链接到 忽略我的 oauth_callback

发布于 2024-11-03 08:06:04 字数 696 浏览 0 评论 0原文

我只是尝试使用 LinkedIn 登录。根据 LinkedIn 的说法,他们使用的是 OAuth 1.0a,这意味着我应该在获取请求令牌时发送 oauth_callback 参数。这是我在下面生成的链接。

https://api.linkedin .com/uas/oauth/requestToken?oauth_callback=http%3a%2f%2flocalhost%3a2161%2flogin%2flinkedin

我收到了包含 oauth_token、oauth_token_secret、oauth_callback_confirmed=true 等的有效响应。

但是在我登录后在 LinkedIn 中,我得到了 OOP 代码来进入我的应用程序,而不是仅仅使用我发送的 oauth_callback 进行重定向。

我现在正在测试的 url 是我的本地主机,但它在实时服务器上执行完全相同的操作。

对此有任何想法。我搜索了 LinkedIn 和其他 stackoverflow 答案,尝试了很多东西,但没有一个起作用。

使用 C#、ASP.NET MVC 3、.NET 4.0

I am simply trying to login using LinkedIn. According to LinkedIn they are using OAuth 1.0a, which means I should send the oauth_callback param when getting the request token. Here is the link I am generating below.

https://api.linkedin.com/uas/oauth/requestToken?oauth_callback=http%3a%2f%2flocalhost%3a2161%2flogin%2flinkedin

I get a valid response back with the oauth_token, oauth_token_secret, oauth_callback_confirmed=true, etc.

However after I log into LinkedIn I get the OOP code to enter into my app instead of it just redirecting using the oauth_callback I sent it.

The url I am testing with right now is my localhost machine, but it does the exact same thing on the live server.

Any thoughts on this. I've searched LinkedIn and other stackoverflow answers, tried a lot of stuff, none of it has worked.

using C#, ASP.NET MVC 3, .NET 4.0

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

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

发布评论

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

评论(1

许你一世情深 2024-11-10 08:06:04

oauth_callback 应在请求令牌的请求标头中发送,而不是在查询字符串中发送。例如:

POST https://api.linkedin.com/uas/oauth/requestToken HTTP/1.1
Authorization: OAuth oauth_callback="http%3a%2f%2flocalhost%3a2161%2flogin%2flinkedin", oauth_consumer_key="YOUR_KEY", oauth_nonce="SOME_NOUNCE", oauth_signature="YOUR_SIGNATURE", oauth_signature_method="HMAC-SHA1", oauth_timestamp="YOUR_TIMESTAMP", oauth_version="1.0"
Host: api.linkedin.com
Connection: Keep-Alive

更多信息可在此处获得: http://developer.linkedin.com/docs/DOC- 1245

您将看到 oauth_callback 是可选的,并且由于 LinkedIn 在“授权”标头中看不到您的 oauth_callback,因此它将用户重定向到您在应用程序设置中指定的“OAuth 重定向 URL”。但是,我猜测您将此“OAuth 重定向 URL”设置留空,这就是您被重定向到 OOP 页面的原因。

我希望这有帮助。

The oauth_callback should be sent in the header of the request for the request token and not the query string. For example:

POST https://api.linkedin.com/uas/oauth/requestToken HTTP/1.1
Authorization: OAuth oauth_callback="http%3a%2f%2flocalhost%3a2161%2flogin%2flinkedin", oauth_consumer_key="YOUR_KEY", oauth_nonce="SOME_NOUNCE", oauth_signature="YOUR_SIGNATURE", oauth_signature_method="HMAC-SHA1", oauth_timestamp="YOUR_TIMESTAMP", oauth_version="1.0"
Host: api.linkedin.com
Connection: Keep-Alive

More info is available here: http://developer.linkedin.com/docs/DOC-1245

You'll see that oauth_callback is optional, and because LinkedIn doesn't see your oauth_callback in the "Authorization" header, it's redirecting the user to the "OAuth Redirect URL" that you specified in your application setting. However, I'm guessing that you left this "OAuth Redirect URL" setting blank, and that's why you're being redirected to the OOP page.

I hope that helps.

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