Reputation: 2293
With PHP api for LinkedIn , how to ask for user permissions at the time of application authorization ?
These are the permissions i need
I tried but couldnt find anything , Please help me
Upvotes: 0
Views: 444
Reputation: 2109
Add this to your authentication string: scope=r_basicprofile+r_emailaddress+r_fullprofile
I will look as follows:
https://api.linkedin.com/uas/oauth/requestToken?scope=r_basicprofile+r_emailaddress+r_fullprofile
More details: http://developer.linkedin.com/documents/authentication#granting
Upvotes: 0
Reputation: 928
Take a look at the last part of the doc http://developer.linkedin.com/documents/authentication
Upvotes: 2