0

次のコードでは、エラーが発生しますfailed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request

        $url = "https://graph.facebook.com/$orderId";
        $url_with_token = $url . "?access_token=$token";
        $result= json_decode(file_get_contents($url_with_token));

どこが間違っているのか教えてください

4

1 に答える 1

0

php.iniファイルに2行追加するだけです。

extension=php_openssl.dll

allow_url_include = On

それは私のために働いています。

于 2013-03-14T07:39:28.997 に答える