php - How to linkedin application in full profile permissions add -


i have linkedin full profile experience, education, skills, , recommendations.

but linkedin application in not r_fullprofile permission display.

so how display r_fullprofile in application. please me...

linkedin application in not show scope:- 'r_fullprofile','r_network','r_contactinfo'.

linkedin application in show scope:- 'r_basicprofile','r_emailaddress','rw_company_admin','w_share'.

my code example:-

$api_key = "apikey"; $api_secret = "api_secret"; $callback_url = ""; //$scope = array('r_basicprofile','r_fullprofile','r_emailaddress','r_network','r_contactinfo'); $scope = array('r_basicprofile','r_emailaddress');   $config = array('api_key' => $api_key, 'api_secret' => $api_secret , 'callback_url' => $callback_url); $connection = new linkedin($config);  if (isset($_request['code'])) {     $code = $_request['code'];     $access_token = $connection->getaccesstoken($code);     $connection->setaccesstoken($access_token);       $user = $connection->get("people/~:(id,first-name,last-name,email-address,headline,industry,summary,positions,picture-url,skills,educations,languages,twitter-accounts,location:(name,country:(code),postal-code),recommendations-received:(recommendation-text,recommender:(first-name,last-name,public-profile-url,headline,picture-url)))");      $_session['user_get_full_info'] = $user;       header('location: index.php');  } else{      if (isset($_request['error'])) {         header('location: index.php?error_code=1');     }     else{         $authurl = $connection->getloginurl($scope);         header("location: $authurl");     } } 


Comments