如何为用户提供使用Twitter个人资料图片的选项,而不是为个人资料上传新的个人资料图片。是否可以将个人资料图片从twitter刷新到我的网站帐户。
答案 0 :(得分:0)
您可以使用他们的API向Twitter的服务器调用GET请求,以检索用户的个人资料图片。
基本上,通过向这样的URL调用GET请求:
GET: https://api.twitter.com/1/users/profile_image?screen_name=twitterapi&size=bigger
它将在Twitter上返回用户想要的图像。
以下是API页面以获取更多详细信息:https://dev.twitter.com/docs/api/1/get/users/profile_image/%3Ascreen_name
答案 1 :(得分:0)
有可能,你所要做的就是connect to twitter's API并访问以下api路径:
https://dev.twitter.com/docs/api/1.1/get/users/show
您需要的具体元素是:
profile_image_url
获得结果后,您可以: