我已获得LinkedIn完整的个人资料经验,教育,技能和建议。
但我的LinkedIn应用程序未显示r_fullprofile
权限。
所以如何在我的应用程序中显示r_fullprofile
。请帮帮我...
LinkedIn应用程序未显示范围: - 'r_fullprofile','r_network','r_contactinfo'
。
LinkedIn应用程序仅显示范围: - 'r_basicprofile','r_emailaddress','rw_company_admin','w_share'
。
我的代码示例: -
$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");
}
}