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];
}
}
你能否提供一個如何在Objective C中使用他們的示例get的例子? https://api.twitter.com/1/users/profile_image?screen_name=twitterapi&size=bigger – Eric 2012-01-17 15:40:19
忽略我的評論,這很容易。謝謝! – Eric 2012-01-17 16:50:57
@Eric:你能告訴我你是怎麼做到的? – 2013-07-10 10:48:11