I am using graph api to get a list of albums of a user. Now in case the user signs out or has changes password or any error condition, I do not get any response whereas some error code should be returned. The graph API url when opened in the browser shows the error but on using file_get_contents() i get error 400. On using curl, I get an empty response. Is there any way that I can find out when an error occurs and the reason for it?
|
|
Well, that is the HTTP status code that Facebook sends with Oauth errors – nothing wrong about that. But … which is just another reason, why one should use the official PHP SDK, which handles all of that nicely and presents you with an exception that tells you exactly what is up. So do it, please. (Even with |
|||
|
|
|
file_get_contents() gave me error many times when I put https instead of http or If I forgot to put any of them. Your URL from which you get the content must have "http" at the starting, like: file_get_contents("http://www.mysite.com"); If this solves it? |
|||
|