validating the refresh token response is missing id_token and refresh_token

As per documentation, validating the refresh token should return a TokenResponse object on a successful validation

https://developer.apple.com/documentation/signinwithapplerestapi/generate_and_validate_tokens


The token response should include the fields id_token and refresh_toekn

https://developer.apple.com/documentation/signinwithapplerestapi/tokenresponse


But I'm only getting following

{

access_token: 'xxxxxxxxxxxxxxx',

token_type: 'Bearer',

expires_in: 3600

}


Why these fields id_token and refresh_token are missing, I need to obtain the user id upon validation without id_token I can't and I need refresh_token for later validation??? How can I get that

@adnangul, have you been able to find a solution?
I'm running into the same issue.
Could you please let me know?




Hey @adnangul,
Did you find out the solution for the same?
Referred so many forums and docs.
Unable to figure out the usage of refreshtoken and it's result accesstoken!
How do I fetch the identity details from refresh_token?

validating the refresh token response is missing id_token and refresh_token
 
 
Q