Hi All,
We implemented Sign in with Apple a year ago and we never used an authorization code to get access and refresh tokens as we never needed that. We stored an identity token and a user identifier for our purpose and using these two we managed to do signup on our own server. Now the problem is
How I can get an access token without asking users to Sign in Again.
If I log out and sign in again I'm getting a new authorization code and when using this code I get an invalid grant error with an invalid token or token expired error message.
One thing I found is that If I manually go to settings and tap "Stop using App" after this we're getting an access token and refresh token in (https://appleid.apple.com/auth/token) API response using authorization code.
So my main problem is how I can get access code for existing users?