使用 JS OAuthSimple 库获取 Twitter 身份验证的访问令牌
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
大家好,感谢您的评论。我已经弄清楚这个问题了。我没有做一个好兆头。完成授权步骤后,我就使用了新的身份验证令牌,并且它现在正在运行。接下来,我将向您粘贴带有解决方案的代码摘录: 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 */ });