使用 JS OAuthSimple 库获取 Twitter 身份验证的访问令牌

发布于 2024-12-23 16:53:39 字数 373 浏览 1 评论 0原文

我正在使用 HTML5 + PhoneGap (没有任何后端服务器端)开发移动应用程序。 我正在使用 OAuthSimple 库登录,但无法完成获取 access_token 的最后一步。有人使用过这个库并得到它吗?你能给我一个代码示例吗?

我已经红色了以下文档,但它没有任何帮助:

https://dev。 twitter.com/docs/auth/oauth#Acquiring_a_request_token

谢谢!

I am developing a mobile app using HTML5 + PhoneGap (there's not ANY backend server side).
I'm using OAuthSimple Library to sign in but I can't get the last step to get the access_token. Did anybody used this library and got it ? Can you give me a code sample?

I've red the following doc but it was not helpful al all:

https://dev.twitter.com/docs/auth/oauth#Acquiring_a_request_token

Thks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

止于盛夏 2024-12-30 16:53:39

大家好,感谢您的评论。我已经弄清楚这个问题了。我没有做一个好兆头。完成授权步骤后,我就使用了新的身份验证令牌,并且它现在正在运行。接下来,我将向您粘贴带有解决方案的代码摘录: varsigned = Oauth.sign({ action: "GET", path: accessTokenUrl, method:'HMAC-SHA1',parameters: { oauth_verifier: pin /* 获得用户 / }, 签名: requestTokenResponse / 一旦授权 */ });

Hi guys thanks for your comments. I've figured out this issue. I was not doing a good sign. Once I've completed the authorization step, I've used the new auth token and it's working now. Next I'll paste you an extract of code with the solution: var signed = Oauth.sign({ action: "GET", path: accessTokenUrl, method:'HMAC-SHA1', parameters: { oauth_verifier: pin /* obtained by the user / }, signatures: requestTokenResponse / once it's authorized */ });

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