I’m using Oauth from sparks which is derived from kohana’s Oauth implementation.
I’m suceesfully able to fetch basic information from linkeidn but after adding “r_emailaddress” scope I do not get email-address only basic info is being fetch.
I’m adding scope follwong way in my controller
$consumer = $this->oauth->consumer(array(
'key' => $config[$provider]['key'],
'secret' => $config[$provider]['secret'],
'scope'=> "r_emailaddress,r_fullprofile"
));
Any Clue would be apreciated.
It got solved, I had to create another app or update existing.