Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm running into problems making requests to the LinkedIn share API using PHP's PECL OAuth module. I've Googled for all I'm worth, but I can't find any examples.

My PHP Code:

$linkedin_oauth = new OAuth($linkedin_consumer_key,$linkedin_consumer_secret,OAUTH_SIG_METHOD_HMACSHA1, OAUTH_AUTH_TYPE_FORM);
  $linkedin_oauth->setToken($linkedin_data->linkedin_token, $linkedin_data->linkedin_consumer_secret);
  $linkedin_oauth->setAuthType(OAUTH_AUTH_TYPE_FORM);

  $body = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>";
  $body .= "<share>";
  $body .= "<comment>83% of employers will use social media to hire: 78% LinkedIn, 55% Facebook, 45% Twitter [SF Biz Times] http://bit.ly/cCpeOD</comment>";
  $body .= "<content>";
  $body .= "<title>Survey: Social networks top hiring tool - San Francisco Business Times</title>";
  $body .= "<submitted-url>http://sanfrancisco.bizjournals.com/sanfrancisco/stories/2010/06/28/daily34.html</submitted-url>";
  $body .= "<submitted-image-url>http://images.bizjournals.com/travel/cityscapes/thumbs/sm_sanfrancisco.jpg</submitted-image-url>";
  $body .= "</content>";
  $body .= "<visibility>";
  $body .= "<code>anyone</code>";
  $body .= "</visibility>";
  $body .= "</share>";

$headers = array('Content-Type' => 'text/xml');
  $linkedin_oauth->fetch("http://api.linkedin.com/v1/people/~/shares", $body, OAUTH_HTTP_METHOD_POST, $headers);
  $linkedin_share_response = $linkedin_oauth->getLastResponse();

But this results in an exception:

Invalid auth/bad request (got a 401, expected HTTP/1.1 20X or a redirect)

My headers look like:

OAuth oauth_consumer_key="<KEY_REMOVED>",oauth_signature_method="HMAC-SHA1",oauth_nonce="12581672284fa32618a44a31.27944550",oauth_timestamp="1336092184",oauth_version="1.0",oauth_token="<TOKEN_REMOVED>",oauth_signature="Qqt5zQKITSvk7OyrdWdFLaR%2F9ns%3D

Does anyone have any idea whats going on here? Regardless of what I do, the response is always a 401.

When I replace with call with a GET call, it works fine.

share|improve this question
Your content type is set to text/xml, so you are sending an xml document to the server. It looks like it is expected an HTTP header. How does your get call look, the difference between the two could be the problem here. – RightHandedMonkey Jan 23 at 2:20

1 Answer

Check return URL in your registered OAuth application. It must be your script’s URL.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.