How to Sign Out of Google After Being Authenticated

后端 未结 6 969
伪装坚强ぢ
伪装坚强ぢ 2021-02-06 23:54

So my app has the option to sign in with Google. Upon clicking the button that Google provides, a web view opens and has the user input their credentials. After allowing the app

6条回答
  •  生来不讨喜
    2021-02-07 00:16

    Swift

    try GIDSignIn.sharedInstance().signOut()

    objective - c

    [[GIDSignIn sharedInstance] signOut];
    

提交回复
热议问题