我已经在我的网站上用php整理了一下。当用户点击“与linkedin连接”按钮时。用户被重定向到linkedin登录页面。用户登录时,会将其重定向到我定义的页面。问题是如何在用户登录后检索用户的基本配置文件和电子邮件地址。我在此链接中提到了asisstance http://developer.linkedin.com/documents/authentication
以下是我重定向到linkedin授权页面的代码:
在此网址中,redirect_uri是授权后重定向用户的页面。那么如何检索用户基本个人资料和电子邮件地址?
答案 0 :(得分:1)
我在ZF2中实现了linkedin api。
请设置回调网址,如accessIn api的访问权限和密钥。
$content = $linkedInObject->getProfile("~:(id,first-name,last-name,headline,picture-url)");
$profile = $this->objectToArray($content);
/*
public $base_url = "http://api.linkedin.com";
public $secure_base_url = "https://api.linkedin.com";
public $oauth_callback = "oob";
*/
function getProfile($resource = "~")
{
$profile_url = $this->base_url . "/v1/people/" . $resource;
$request = OAuthRequest::from_consumer_and_token($this->consumer, $this->access_token, "GET", $profile_url);
$request->sign_request($this->signature_method, $this->consumer, $this->access_token);
$auth_header = $request->to_header("https://api.linkedin.com"); # this is the realm
$response = $this->httpRequest($profile_url, $auth_header, "GET");
return $response;
}
//为ZF2修改,但在你的情况下 http://api.linkedin.com/v1/people/~:(id,first-name,last-name,headline,picture-url)
现在你可以将名字命名为$ profile ['first-name']。
由于