gpt4 book ai didi

jquery - Twitter 状态 API 突然返回错误 '34'

转载 作者:行者123 更新时间:2023-12-01 01:59:19 25 4
gpt4 key购买 nike

我有一个脚本可以从我的 feed 中获取前 3 条推文。这工作得很好,但现在它在 JSON 中返回以下错误:

{"errors":[{"message":"Sorry, that page does not exist","code":34}]}

Twitter 将其描述为典型的 404 未找到错误,但我在 Twitter 网站上没有看到“API 状态”造成任何中断。

我们现在获取推文的方式是否发生了变化?

我的代码:

$.getJSON('http://twitter.com/statuses/user_timeline.json?screen_name=' + user + '&count=3&include_rts=true&callback=?', function(data) { });

谢谢。

最佳答案

您使用了错误的链接,https://api.twitter.com/1/statuses/user_timeline/jbrooksuk.json

试试这个:

$.getJSON('http://api.twitter.com/1/statuses/user_timeline/' + user + '.json?count=3&include_rts=true&callback=?', function(data) { });

关于jquery - Twitter 状态 API 突然返回错误 '34',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12837319/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com