0

我在使用 api http://code.google.com/p/simple-linkedinphp/在 Linkedin 组中发布消息时遇到问题。

有了这个要求:

$OBJ_linkedin = new LinkedIn($API_CONFIG);
$response = $OBJ_linkedin->createPost(  "IDGROUP" ,   "title test",  "message test");

我收到以下回复:

<error>
   <status>403</status>
   <timestamp>1369732087697</timestamp>
   <request-id>NNPMM1EN5E</request-id>
   <error-code>0</error-code>
   <message>com.linkedin.anet.auth.pub.ANetAuthException: nonMember: anetID=IDGROUP </message>
<error>

我用组 ID 正确替换了 IDGROUP,AppKey 和 AppSecret 也是正确的。

4

1 回答 1

0

您必须access token在进行 api 调用之前进行设置。

$OBJ_linkedin->setTokenAccess(array("oauth_token" => $oauth_token, 
                             "oauth_token_secret" => $oauth_token_secret));
于 2013-05-28T09:32:48.577 回答