raki
raki

Reputation: 2293

Ask for user permissions in LinkedIn application

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

Answers (2)

Samer Bechara
Samer Bechara

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

Ydhem
Ydhem

Reputation: 928

Take a look at the last part of the doc http://developer.linkedin.com/documents/authentication

Upvotes: 2

Related Questions