1

file_get_contents で次のエラーが発生します。

Warning: file_get_contents(https://graph.facebook.com/oauth/access_token?client_id=&client_secret=fe9f106b05f6ab737a67ccc94a782767&grant_type=client_credentials) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request in /home/filevanc/public_html/scripts/cpa/facebookvirallink.php on line 25

25行目は次のとおりです。

 $cred = file_get_contents("https://graph.facebook.com/oauth/access_token?client_id=$appID&client_secret=$secret&grant_type=client_credentials");

また、次のように file_get_contents に別のアプローチを使用してみました。

$opts = array('http'=>array('header' => "User-Agent:MyAgent/1.0\r\n"));
$context = stream_context_create($opts);
$response = file_get_contents($domain,false,$context);

しかし、これは同じエラーを出します。

他に何を試すことができるかについて何かアドバイスはありますか?

4

1 に答える 1

0

実際に行われた呼び出しでは client_id が空であるため、25 行目で使用すると $appID 変数に値がないように見えます。

于 2013-01-17T12:12:57.873 に答える