Linkedin授权问题

时间:2015-02-23 09:53:45

标签: rest oauth-2.0 linkedin

我可以从linkedin授权API获取oauth_token和oauth_token_secret。

但是,我不确定如何使用它来生成" oauth2_access_token"用于调用任何linkedin API的参数。

使用标题:"授权:Bearer {access_token}"没有工作并且出错。

1 个答案:

答案 0 :(得分:0)

可以在OAuth 1.0a流向LinkedIn的情况下利用oauth_tokenoauth_token_secret,例如您现在可以使用以下方式将用户发送到LinkedIn授权终端

https://api.linkedin.com/uas/oauth/authorize?oauth_token=" . $oauth_token

如果您想要使用OAuth 2.0,则需要遵循此处描述的其他路径:https://developer.linkedin.com/docs/oauth2并且您不会使用oauth_tokenoauth_token_secret,而是使用消费者密钥和消费者秘密。