注销使用苹果登录的账号

  • Post author:
  • Post category:其他


使用AppleID登录的app,可以在设置->密码与安全性->使用Apple ID的App里找到:

在这里插入图片描述




实现苹果登录



注销:

(https://developer.apple.com/documentation/sign_in_with_apple/revoke_tokens)

流程思路:



  1. authkey



    JWT

    函数生成的

    client_secret

    和苹果登录时获取到的

    authorizationCode

    (仅供一次性使用,有效期为五分钟),client_id, grant_type传给

    https://appleid.apple.com/auth/token
  2. 上面返回一个refresh_token后再传给

    Sign in with Apple REST API

    就可以注销成功


实现代码参考链接


注意: 检查authkey是否勾选了”Sign In with Apple”!!!


client_secret最好放在后端



版权声明:本文为weixin_39388536原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。