2012-01-13 122 views
1

我需要幫助獲取Twitter個人資料照片,一旦我被授予訪問Twitter帳戶的權限。下面的代碼讓我知道配置文件句柄(@twitter)。有沒有辦法在iOS5中直接從Twitter獲取這些信息?獲取Twitter個人資料圖片iPhone iOS5

這裏就是我有,對於手柄的工作原理:

-(void)getTwitterName 
{ 
    ACAccountStore *accountStore = [[ACAccountStore alloc] init]; 
    ACAccountType *accountType = [accountStore accountTypeWithAccountTypeIdentifier:ACAccountTypeIdentifierTwitter]; 

    [accountStore requestAccessToAccountsWithType:accountType withCompletionHandler:^(BOOL granted, NSError *error) 

    { 
     if(granted) { 
      NSArray *accountsArray = [accountStore accountsWithAccountType:accountType]; 

} 
} 

回答

2

您可以從以下網址獲得它:http://api.twitter.com/1/users/profile_image/:screen_name.format

我的輪廓影像,例如,將http://api.twitter.com/1/users/profile_image/don_kim

你可以閱讀更多內容here

+0

你能否提供一個如何在Objective C中使用他們的示例get的例子? https://api.twitter.com/1/users/profile_image?screen_name=twitterapi&size=bigger – Eric 2012-01-17 15:40:19

+0

忽略我的評論,這很容易。謝謝! – Eric 2012-01-17 16:50:57

+0

@Eric:你能告訴我你是怎麼做到的? – 2013-07-10 10:48:11

相關問題