重定向时将oAuth2与LinkedIn一起使用时出错

本文关键字:出错 一起 oAuth2 重定向 LinkedIn | 更新日期: 2023-09-27 18:03:01

问题


我正在将我的应用程序中的URL调用到LinkedIn授权页面,但我似乎收到了一个错误:

Request.QueryString = {error=unsupported_response_type&error_description=We+only+support+a+response_type+of+%22code%22+but+you+passed+%22%22&state=DCEeFWf45A53sdfKef424}

我已经在开发者页面上设置了我的应用程序,并检索了ID和Secret。然后我想使用以下URL直接访问LinkedIn:

Response.Redirect(string.Format("https://www.linkedin.com/oauth/v2/authorization?responsetype=code&client_id={0}&redirect_uri={1}&state=DCEeFWf45A53sdfKef424&scope=r_basicprofile",APIKey,url));

有人能看到一个问题吗?我想做什么?

重定向时将oAuth2与LinkedIn一起使用时出错

查看api,应该是response_type而不是responsetype