作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在加载推文时遇到问题。我想加载 ex 的推文。来自“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);
}
当我尝试这个时,我得到了这个错误:
GET https://api.twitter.com/1/statuses/user_timeline/BachelorGDM.json?callback=twitterCallback2&count=4 410 (Gone)
奇怪的是,这在昨天有效:/
我已经尝试加载来自另一个用户的推文,但响应相同。
有人知道我做错了什么吗?
最佳答案
如果你打开your url在浏览器中,它说:
The Twitter REST API v1 will soon stop functioning. Please migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview.
因此,您需要使用较新的版本。
关于javascript - 加载 twitter 推文 410 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17064747/
我想开发一个 Skype 机器人,它将用户名作为输入,并根据用户输入以相反的字符大小写表示hello username。简而言之,如果用户输入他的名字 james,我的机器人会回复他为 Hello J
我是一名优秀的程序员,十分优秀!