我使用NXOauth2Client登录并注销Instagram API,第一次运行和登录时,它显示来自Instagram的登录字段,但后来我无法注销另一个Instagram帐户进行测试。即使我确实从NXOAuth2AccountStore中删除了所有帐户
这是我的登录
- (IBAction)Login:(id)sender {
[[NXOAuth2AccountStore sharedStore]requestAccessToAccountWithType:@"Instagram"];
}
这是注销
- (IBAction)Logout:(id)sender {
for (NXOAuth2Account *account in [[NXOAuth2AccountStore sharedStore] accounts]) {
[[NXOAuth2AccountStore sharedStore] removeAccount:account];
}
}
我将不胜感激任何帮助