Obtaining an access or refresh token #170
-
I've used this library to implement the Apple Sign in integration with my native App and I'm now at the point where I need to implement the delete account feature. However, I'm struggling to see how this should be done from the documentation. I'm using Apple's
On my backend the flow continues:
Note: At no point have I got an access or refresh token and either stored this or reported this back to the calling App. Now I'm approaching the delete account implementation and my understanding is that I need to get:
I haven't created a Service ID and private key for the Service ID my Apple Developer Account because I'm not (and probably never) looking to support sign in via my website. So my my questions at this point are:
Ideally, I'd have stored a refresh token (and perhaps access token) against an account at the point of creation, but the opportunity to do that has passed and these tokens weren't available from the apple sign in calls I outlined above (at least not that I saw). So the question now is what is my best way to proceed? Thanks and apologies for the long message! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
To answer my own question, I pursued option 3 from the question block above and this seems to be working nicely. It does however mean the user needs to authenticate again when making an account delete request. This however I think is probably a good thing since it's an added step which ensures the person performing the delete request is the owner of the account. |
Beta Was this translation helpful? Give feedback.
To answer my own question, I pursued option 3 from the question block above and this seems to be working nicely. It does however mean the user needs to authenticate again when making an account delete request. This however I think is probably a good thing since it's an added step which ensures the person performing the delete request is the owner of the account.