1

我已经在我的 iphone 应用程序中创建了 Titter 登录,在这里我想将我的访问令牌和密钥发送到服务器以实现自动共享功能,我无法获得我的访问令牌和密钥,请提前帮助我。

这是我的代码:

ACAccountType *twitterType = [store accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
[store requestAccessToAccountsWithType:twitterType
                 withCompletionHandler:^(BOOL granted, NSError *error){

                     if(!granted){
                         NSLog(@"%@",[error localizedDescription]);
                     }
                     NSLog(@"store %@",store);
                 }];
if([[store accounts] count] > 0)
{
    NSLog(@"TWEET");
    self.hasTwitterAccountAccess = YES;
}
else
{
    NSLog(@"newlog");
    self.hasTwitterAccountAccess = NO;
}


if(self.hasTwitterAccountAccess){
    NSLog(@"login");
    // If we have twitter access, refresh the table view
    ACAccountType *twitterType = [store accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter];
}
4

1 回答 1

0

您必须使用反向 OAuth:https ://dev.twitter.com/docs/ios/using-reverse-auth

于 2013-04-08T18:29:46.033 回答