I need your help to resolve a problem. Sometime after I got the token this error happen when a try to get data about user:
A PHP Error was encountered
Severity: Warning
Message: file_get_contents(https://graph.facebook.com/me?access_token=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx): failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request
The code that execute this is:
$url = "https://graph.facebook.com/me?access_token=".$token;
$dados = @json_decode(file_get_contents($url));
How can I resolve this problem? Why this happen?
I searched a lot, but didn't find the solution. Someone help me please.
Thanks.