在 Oauth 授权流程中提供 URI 请求以获取请求令牌时未找到文件(以访问 Yahoo API)

发布于 2024-12-27 03:14:24 字数 859 浏览 1 评论 0原文

我遵循 oauth 授权流程(http://developer.yahoo.com/oauth/guide/oauth-requesttoken.html) 来访问 Yahoo 的 Contact API 。我能够从第一步获取我的应用程序的消费者密钥和消费者秘密。

然而,我在第二步中给出 URI 请求时收到“找不到文件”。

我的URI请求如下===>

https://api.login.yahoo.com/oauth/v2/

get_request_token? oauth_nonce=rs2130523f788f313f76314ed3965ea6

&oauth_timestamp=1325661943

&oauth_consumer_key=dj0yJmk9VndXdnhUbkJMc2MyJmQ9WVdrOVUzcFdkbnA0TXpnbWNHbzlNamMxTXpJeU9UWXkm

cz1jb25zdW1lcnNlY3JldCZ4PTkw

&oauth_signature_method=纯文本

&oauth_signature=1daaeb467916f4331023fc5fce3cb6b6c27ac7ed

&oauth_version=1.0

&xoauth_lang_pref="en​​-us"

&oauth_callback="http://mysitename.freetzi.com/index.html"

你能告诉我为什么我收到“文件未找到”吗?

I am following oauth authorization flow(http://developer.yahoo.com/oauth/guide/oauth-requesttoken.html) for accessing Yahoo's Contact API . I am able to get consumer key and consumer secret for my application from first step.

However I am getting "File Not Found" in 2nd step while giving URI request.

My URI request is given below===>

https://api.login.yahoo.com/oauth/v2/

get_request_token?oauth_nonce=rs2130523f788f313f76314ed3965ea6

&oauth_timestamp=1325661943

&oauth_consumer_key=dj0yJmk9VndXdnhUbkJMc2MyJmQ9WVdrOVUzcFdkbnA0TXpnbWNHbzlNamMxTXpJeU9UWXkm

cz1jb25zdW1lcnNlY3JldCZ4PTkw

&oauth_signature_method=plaintext

&oauth_signature=1daaeb467916f4331023fc5fce3cb6b6c27ac7ed

&oauth_version=1.0

&xoauth_lang_pref="en-us"

&oauth_callback="http://mysitename.freetzi.com/index.html"

Can you please tell why I am getting "File not found"?

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

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

发布评论

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

评论(1

古镇旧梦 2025-01-03 03:14:24

如果您的参数有问题,响应状态代码为 401。所以你得到了“文件未找到”错误。但是你可以用 Firebug 在 http header 中看到错误消息。 您的问题是,如果 oauth_signature_method 是明文,您应该在 oauth_signature 之后添加 %26
像这样

&oauth_signature_method=明文
&oauth_signature=1daaeb467916f4331023fc5fce3cb6b6c27ac7ed%26
&oauth_version=1.0
希望这有帮助。

The response status code is 401 if there is something wrong with your parameters. So you got the "File not found" error. But you can see the error message in the http header with Firebug. Your problem is if the oauth_signature_method is plaintext, you should add a %26 after your oauth_signature
Like this

&oauth_signature_method=plaintext
&oauth_signature=1daaeb467916f4331023fc5fce3cb6b6c27ac7ed%26
&oauth_version=1.0
Hope this helps.

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