You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the below code we provide the scopes. In the below code I added scope for mail. Is it possible for me to add more scopes to the current authState. Say I want to add calendar scope later to the existing authState. How should I do it.
Using the below code we provide the scopes. In the below code I added scope for mail. Is it possible for me to add more scopes to the current authState. Say I want to add calendar scope later to the existing authState. How should I do it.
[[OIDAuthorizationRequest alloc] initWithConfiguration:configuration
clientId:kClientID
clientSecret:kClientSecret
scopes:@[OIDScopeOpenID, OIDScopeProfile, @"https://mail.google.com/"]
redirectURL:redirectURI
responseType:OIDResponseTypeCode
additionalParameters:nil];
The text was updated successfully, but these errors were encountered: