6

是否有一个可预测的 url 来通过用户名或 id 检索用户的个人资料图像?

...类似于谷歌或脸书:

"https://graph.facebook.com/#{FACEBOOK ID}/picture"
"https://profiles.google.com/s2/photos/profile/#{GOOGLE ID}"

我找到了这个https://dev.twitter.com/docs/user-profile-images-and-banners但看起来我必须做一个完整的单独请求才能获取个人资料图片。

4

2 回答 2

10

一个类似于 Facebook 或 Google 的可预测 URL,用于通过用户名检索用户的个人资料图像,如下所示

"https://twitter.com/[screen_name]/profile_image?size=original"

例如

"https://twitter.com/sqlpowershell/profile_image?size=original"

其他尺寸包括

  • 迷你 - 24x24 像素
  • 正常 - 48x48
  • 更大 - 73x73

不必使用 API 完全放心!

于 2016-02-17T14:01:01.223 回答
2

在我们使用 twitter 版本 1 api 无需身份验证即可访问用户的个人资料图像之前。

现在这已被弃用,我们经常使用 /1.1/users/show.json 来提取带有身份验证信息的配置文件图像。

于 2013-12-09T01:07:03.237 回答