如何使用 ajax 请求发送 Twitter OAuth 访问令牌?
我想在使用 OAuth 通过“用 twitter 签名”进行身份验证后加载用户的主页时间线。我正在使用这个库来处理身份验证部分 https://github.com/jmathai/twitter-async< /a>
身份验证部分工作正常,但我不清楚如何作为给定的经过身份验证的用户向 twitter api 发送请求。我想像这样对用户的家庭时间轴发出 ajax 请求:
// this call produces "is not allowed by Access-Control-Allow-Origin" error
$.getJSON("http://api.twitter.com/1/statuses/home_timeline.json", function(json) {
console.log(json);
});
所以我的问题是如何随我的请求一起发送用户的访问令牌以及令牌存储在哪里?或者我处理这个问题的方法是错误的?
I want to load in a user's home timeline after authenticating through 'sign it with twitter' using OAuth. I'm using this library to handle the authentication part https://github.com/jmathai/twitter-async
The authentication part is working fine but I'm unclear about how to send requests to twitter api as the given authenticated user. I want to make an ajax request for for the user's home timeline like this:
// this call produces "is not allowed by Access-Control-Allow-Origin" error
$.getJSON("http://api.twitter.com/1/statuses/home_timeline.json", function(json) {
console.log(json);
});
So my question is how do I send the user's access token along with my request and where is the token stored? Or am I approaching this problem wrong?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你需要把这个请求变成JSONP请求,这样就可以做跨域AJAX了。
?callback=?
将其转换为 JSONP 请求。您提供的链接适用于 PHP 库。如果您想在 JavaScript 中进行 API 调用,则需要使用 JavaScript OAuth 库。
You need to make this request into a JSONP request, so you can do cross-domain AJAX.
The
?callback=?
converts this into a JSONP request.The link you provided is for a PHP library. If you want to make API calls in JavaScript, you need to use a JavaScript OAuth library.