Twitter状态更新 - 无法正常工作

时间:2010-09-29 21:16:11

标签: php twitter

嘿,推特是否在他们的API中改变了什么?

这不再适用于我: http://morethanseven.net/2007/01/20/posting-to-twitter-using-php.html

任何人都知道这是我的机器的东西还是来自Twitter的API更新?

谢谢,

4 个答案:

答案 0 :(得分:2)

该脚本使用basic authentication,但Twitter discontinued support在8月底进行基本身份验证。在Twitter的OAuth FAQ中有关于OAuth的更多信息。

答案 1 :(得分:2)

  1. Twitter停止使用基本身份验证(2010年8月31日结束)并转移到OAuth。使用OAuth。
  2. Twitter API地址已更改。 Twitter API的地址也发生了变化。查看此doc以查看状态更新的应用方式( http://twitter.com/statuses/update.xml 已更改为 http://api.twitter。 COM / 1 /状态/ update.xml )。
  3. 您提供的链接,该文档于2007年1月20日撰写。 Twitter API doc描述了已更改的内容。

答案 2 :(得分:1)

Twitter仅支持oauth。您应该使用支持oauth的库。

答案 3 :(得分:0)