6
votes

I want to implement "sign up using LinkedIn" functionality ,I followed this document and stuck at point b with this error instead of getting access token. 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"
}

I want to fill user basic information in registration form e.g. firstname,lastname,email etc. I dont want to use javascript API,and need to go with REST API of linkedIn ,

2
Could you share what your request looks like? What are the parameters that you pass? - divyanshm
to fetch user login prompt of linked in;this will give me code value that will be used to get access token : linkedin.com/uas/oauth2/… - Hardik Bhalani
to get accesss token i used: linkedin.com/uas/oauth2/… - Hardik Bhalani
No, i was talking about your HTTP request that you sent. It is possible that you might have constructed your http request incorrectly which is causing this error. - divyanshm
not getting you by HTTP request,I had only sent these two requests, 1st request is simple redirect and second one i executed with postman client for testing service using chrome - Hardik Bhalani

2 Answers

3
votes

Please refer the following,

http://www.bigcode.net/2013/08/linkedin-share-api-usage-using-oauth2.html

It has the details on using OAuth2 and accessing one of the api.

The code may be used for authentication. Once you are authenticated, you can use the Profile api mentioned here

http://developer.linkedin.com/documents/profile-api to get the profile details.