我在加载推文时遇到问题。我想加载前面的推文。来自“BachelorGDM”。
(https://twitter.com/BachelorGDM)
这就是我在javascript文件中所做的:
var url = 'https://api.twitter.com/1/statuses/user_timeline/BachelorGDM.json?callback=twitterCallback2&count=4';
var script = document.createElement('script');
script.setAttribute('src', url);
document.body.appendChild(script);
function twitterCallback(tweets)
{
console.log(tweets);
}
当我尝试这个时,我收到了这个错误:
获取https://api.twitter.com/1/statuses/user_timeline/BachelorGDM.json?callback=twitterCallback2&count=4 410(已走)
奇怪的是,这是有效的yesterdag:/我已经尝试从其他用户加载推文但响应相同。
有人知道我做错了吗?
答案 0 :(得分:3)
如果您在浏览器中打开your url,则会显示:
Twitter REST API v1很快就会停止运作。请迁移到 API v1.1。 https://dev.twitter.com/docs/api/1.1/overview
所以,你需要使用更新的版本。
答案 1 :(得分:2)
Twitter停止支持他们的API v1,然后转到V1.1。此版本具有额外的安全层(公共帐户也需要)。如果您使用的是PHP,this tutorial会帮助您重新显示推文。
答案 2 :(得分:1)