如何使用 ajax 请求发送 Twitter OAuth 访问令牌?

发布于 2024-11-03 15:07:30 字数 548 浏览 0 评论 0原文

我想在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

卷耳 2024-11-10 15:07:30

你需要把这个请求变成JSONP请求,这样就可以做跨域AJAX了。

$.getJSON("http://api.twitter.com/1/statuses/home_timeline.json?callback=?", function(json) {
  console.log(json);
});

?callback=? 将其转换为 JSONP 请求。

您提供的链接适用于 PHP 库。如果您想在 JavaScript 中进行 API 调用,则需要使用 JavaScript OAuth 库。

You need to make this request into a JSONP request, so you can do cross-domain AJAX.

$.getJSON("http://api.twitter.com/1/statuses/home_timeline.json?callback=?", function(json) {
  console.log(json);
});

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文