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];
}