php,如何将我的朋友头像从 Twitter 插入到我的网页?

发布于 2024-11-07 21:03:09 字数 72 浏览 0 评论 0原文

我想将我所有的朋友/关注者从 Twitter 放到我的网页上? 没有消息或时间戳,只有图片。

有什么想法吗? 谢谢

i would like to place all my friends / followers from twitter to my webpage?
no messages or timestamps, just the pictures.

any ideas?
thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深居我梦 2024-11-14 21:03:09

您是否看过可用的库之一? http://dev.twitter.com/pages/libraries#php

Have you taken a look at one of the available libraries? http://dev.twitter.com/pages/libraries#php

绻影浮沉 2024-11-14 21:03:09

以下是身份验证后涉及的基本步骤(请参阅其他问题/教程。此处重复这些步骤没有意义):

  • 调用 statuses/friends 获取好友列表
  • 致电 statuses/followers 获取您的关注者列表
  • 循环浏览列表,从每个用户处获取 profile_image_url
  • 将 URI 放入您的网页中。

编辑:

正如 abraham 所指出的,上述方法已被弃用,因此建议使用以下方法:

Here are the basic steps involved after authenticating (see other questions/tutorials for that. No sense in repeating those steps here):

  • Call statuses/friends to get list of your friends
  • Call statuses/followers to get list of your followers
  • Loop through lists, grabbing profile_image_url from each user
  • Place URI into your web page.

Edit:

As noted by abraham, the above methods are deprecated so it is recommended to use an approach that utilizes:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文