Apache Oltu Linkedin集成示例


问题内容

我期待开发 Spring MVC + Apache Oltu + Linkedin
集成示例。在此示例中,您需要发送“客户端ID”和“客户端密钥”以从“链接到的站点”中访问私有资源。

第一步-我们需要在Linkedin中创建App,请按照以下步骤操作:http : //codeboxr.com/how-to-create-linkedin-
app.html

创建应用后,您需要确保已为重定向URL设置了值。

在Java代码中,我使用了setScope(“ r_network w_share r_basicprofile”)setState(“
987654321”)

当我使用以下代码时:

request= new OAuthBearerClientRequest("https://api.linkedin.com/v1/people/").buildQueryMessage();

我得到以下错误。有人可以吗?

Could not access resource: 401 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<error>
  <status>401</status>
  <timestamp>1429554559432</timestamp>
  <request-id>QJWNLL5PWX</request-id>
  <error-code>0</error-code>
  <message>Unknown authentication scheme</message>
</error>

重要的是,我在下面获得了正确的详细信息,但似乎正在访问私有资源:

    {"access_token":"SQXZVmVM05AOzDB_DdBm5iaJkrEC8oK-FgE1m1snEZbMcKUODew9I0ZQ6NWc8JtGDxTtEd-yyPul0FtF3-hG4ah6LZ9P4oaSVuhhtybRFmjfsZcJwOs5Lm2IDUGQnjmq5EdT3PVR7Bocq31VBXg0JtkQdImab945oicO_w2j6CjlByp-bWw",
"expires_in":5108376}

问题答案:

看来您已经成功获取了OAuth 2.0访问令牌,在进行API调用时需要在查询参数中传递access_token。这就是处理OAuth
2.0身份验证的方式(OAuth 1.0要求访问令牌位于标头中,而OAuth 2.0依赖于查询参数)。

例如:

GET
https://api.linkedin.com/v1/people/~?oauth2_access_token=

如果需要更多详细信息,请单击链接:https : //developer-
programs.linkedin.com/forum/unknown-authentication-scheme

如果将令牌与访问受保护资源的请求一起发送,则应该获得以下详细信息。

更正的代码段:

request= new OAuthBearerClientRequest
                ("https://api.linkedin.com/v1/people/~?oauth2_access_token="+oAuthResponse.getAccessToken()).
                buildQueryMessage();

在我的示例中,我得到以下 HTTP 200 OK 响应,只是想向您展示。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<person>
  <id>LLIyXMKhNI</id>
  <first-name>FirstName</first-name>
  <last-name>LastName</last-name>
  <headline>Spring Developer at Amazon</headline>
  <site-standard-profile-request>
    <url>https://www.linkedin.com/profile/view?id=154416688&amp;authType=name&amp;authToken=ipNL&amp;trk=api*a4360331*s4423501*</url>
  </site-standard-profile-request>
</person>

希望这会对您有所帮助。