Replies: 2 comments
-
I would like to do this too. Have you found a solution for that? |
Beta Was this translation helpful? Give feedback.
-
the user email and name and other information returned by AppleLogin will be null after the first time if we didn't revoke the access_token for that user. all you need to do, is to revoke the access token which has been generated at the first login and then try to login once again. you may use the following request for getting that access token :
and use this request for revoking the access token:
you will need to generate client secret using private key, you may follow this link for how generate that. token: this also helpful : Medium article on how to generate client secret through dart |
Beta Was this translation helpful? Give feedback.
-
Hi
I have been using this package in my iOS App. But I want to add a feature to let user delete their account. For this I need to let user initiate to revoke the token. Any idea how I can do this?
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions