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
if (authorisationStatusChanged) {
if (accessToken) {
if ([delegate respondsToSelector:@selector(oauthClientDidGetAccessToken:)]) {
[delegate oauthClientDidGetAccessToken:self];
}
} else {
if ([delegate respondsToSelector:@selector(oauthClientDidLoseAccessToken:)]) {
[delegate oauthClientDidLoseAccessToken:self];
}
}
} else {
// This line is IDLE since NXOAuth2AccountStore does not implement an optional method
-----> if ([delegate respondsToSelector:@selector(oauthClientDidRefreshAccessToken:)]) {
[delegate oauthClientDidRefreshAccessToken:self];
}
}
The - (void)accountDidChangeAccessToken:(NSNotification *)aNotification; method is not invoked either
The text was updated successfully, but these errors were encountered:
The
- (void)accountDidChangeAccessToken:(NSNotification *)aNotification;
method is not invoked eitherThe text was updated successfully, but these errors were encountered: