Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've downloaded Amazon's Marketplace SDK and I'm trying out one of the samples in the samples dir. However, I'm getting an exception with the following details whenever I try it:

Caught Exception: Internal Error
Response Status Code: 0
Error Code: 
Error Type: 
Request ID: 
XML: RequestId: , ResponseContext: , Timestamp: 
ResponseHeaderMetadata: 

I have got CURL enabled with SSL as well. What am I doing wrong?

share|improve this question
1  
I had a similar problem when the server simply couldn't access external pages. Aside from cURL being enabled, have you confirmed that cURL actually works? – TVK Jan 13 at 14:07
@TVK Well, I'm able to use Facebook's API on the same server, so I think it should be working. How else can I verify that its working? – Click Upvote Jan 13 at 14:14
1  
I personally like to use this function: pastebin.com/PwpFFBW7 To test the connection, type echo curl('http://example.com'); If Facebook's API is working then perhaps it's a connection problem between the PHP server and Amazon server. Can you ping Amazon from the server? – TVK Jan 13 at 14:19
@TVK I just tried that, using curl('http://google.com');, got correct response, i.e: <HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8"> <TITLE>301 Moved</TITLE></HEAD><BODY> <H1>301 Moved</H1> The document has moved <A HREF="http://www.google.com/">here</A>. </BODY></HTML> – Click Upvote Jan 13 at 14:23
1  
Have a look here - curl.haxx.se/docs/caextract.html - basically, cURL doesn't come with a good list of CA's to check against. – Jack Jan 22 at 0:03
show 4 more comments

1 Answer

up vote 2 down vote accepted

This answer is for future reference. For in-depth troubleshooting, see comments on the question.

The empty response indicates a failed connection to the Amazon server. In this case, HTTP worked fine, but HTTPS did not. As turning off CURLOPT_SSL_VERIFYPEER in the cURL settings solved the issue, it appears that the Amazon server was not using a valid SSL certificate.

Having CURLOPT_SSL_VERIFYPEER turned on checks if the requested host has a valid certificate and lets cURL return false if it doesn't. When CURLOPT_SSL_VERIFYPEER is off, invalid certificates (e.g., self-signed) are accepted and return the regular response.

share|improve this answer
Thanks for the help. By the way, are you familiar with MWS? – Click Upvote Jan 13 at 14:45
You're welcome, and nope, haven't worked with it. – TVK Jan 13 at 19:14

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.