我制作了一个为某种原因注册用户的应用程序。该应用程序从他们的 FB 帐户中获取电子邮件、名称。
39: $token_url = "https://graph.facebook.com/oauth/access_token?client_id=".$app_id."&redirect_uri=".urlencode($my_url)."&client_secret=".$secret."&code=".$code;
40: $access_token = file_get_contents($token_url);
41: $graph_url = "https://graph.facebook.com/me?fields=id,name,email&".$access_token;
42:$user = json_decode(file_get_contents($graph_url));
第 40 行和第 42 行出现错误
[function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request in /home/*********/index.php on line 40
[function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request in /home/*********/index.php on line 42
但仅在尝试评估用户提供的字段之后,而不是在第一次启动应用程序时。这段代码中是否有任何错误,或者我应该在脚本中的其他地方查看?