我正在为学校做一个项目,我已经完成了很多工作。无论如何项目是在视图控制器中制作朋友列表,只是用户图像和用户名,然后点击他们的用户图像将会显示另一个笔尖,同一用户图片只有更大和用户名。我们必须使用GET好友/列表,这是我的电话https://api.twitter.com/1.1/friends/list.json?cursor=-1&skip_status=true&include_user_entities=false&count=20
并使用它来获取个人资料图片
NSString *imageUrl = [[usersArray objectAtIndex:i] objectForKey:@"profile_image_url"];
唯一的问题是这些照片太小而且模糊。将它们放大只会使它们变得更加模糊,例如来自twitter api网页: http://a0.twimg.com/profile_images/2838630046/4b82e286a659fae310012520f4f756bb_normal.png
我知道这会有用,但它仅针对每个个人资料。 http://api.twitter.com/1/users/profile_image?screen_name=USERNAME&size=bigger
有没有办法使用GET好友/列表来获得更大更清晰的图片?
答案 0 :(得分:0)
尝试使用“_bigger.png”替换图像网址中的“_normal.png”73px 73px http://a0.twimg.com/profile_images/2838630046/4b82e286a659fae310012520f4f756bb_bigger.png
或者您可以通过从网址中删除“_normal”来获取原始图片。
http://a0.twimg.com/profile_images/2838630046/4b82e286a659fae310012520f4f756bb.png
Twitter文档可在以下网址找到:https://dev.twitter.com/docs/user-profile-images-and-banners