我想实现“使用LinkedIn注册”功能,我遵循了这个文档并坚持使用此错误而不是获取访问令牌。 https://developer.linkedin.com/documents/authentication
{
"error": "invalid_request",
"error_description": "missing required parameters, includes an invalid parameter value, parameter more then once. : client_id"
}
我想以注册表格填写用户基本信息,例如名字,姓氏,电子邮件等 我不想使用javascript API,需要使用linkedIn的REST API,
答案 0 :(得分:10)
这将返回一个带有用户信息的json文件: https://api.linkedin.com/v1/people/~?oauth2_access_token=value&format=json
答案 1 :(得分:3)
请参阅以下内容,
http://www.bigcode.net/2013/08/linkedin-share-api-usage-using-oauth2.html
它包含使用OAuth2和访问其中一个api的详细信息。
该代码可用于身份验证。 通过身份验证后,您可以使用此处提到的Profile api
http://developer.linkedin.com/documents/profile-api获取个人资料详情。