Replies: 1 comment
-
Heres a workaround that also explains what's going on: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hoping to get all your inputs with my problem.
We have two projects, both are built in Laravel Framework
In Portal Website, we have a button for Apple Sign In. It triggers to go to SSO Website with the parameters of [redirect_url, category, device type]. As soon as the redirect is triggered, I'm saving the parameters in the Session. After saving, executing the code to open the Sign Page.
Socialite::driver('apple')->stateless()->redirect()
.After the apple sign in, it goes to the /callback route. Problem is, Sessions is now gone. I have no way of knowing where it should go back.
Any idea how can I have pass a parameter to apple and retrieve the data in callback controller.
I also cannot do the response_mode
query
because I need to retrieve users information (email, first_name and last_name)Beta Was this translation helpful? Give feedback.
All reactions