Proxy üzerinden Facebook PHP SDK Curl

0 Cevap php

Kurulum php sdk çalışıyor Im. SDK istek yapmak için Curl kullanıyor. Ama vekaleten bunu yapmak zorunda.

Benim OPTS:

  public static $CURL_OPTS = array(
    CURLOPT_CONNECTTIMEOUT => 10,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_TIMEOUT        => 60,
    CURLOPT_USERAGENT      => 'facebook-php-2.0',
    CURLOPT_PROXYPORT      => '8080',
    CURLOPT_PROXY          => 'proxy',

  );

curl_setopt_array($ch, $opts);
print "<pre>"; print_r($opts);    print "</pre>";

Bu baskı olduğunu:

Array
(
    [78] => 10
    [19913] => 1
    [13] => 60
    [10018] => facebook-php-2.0
    [59] => 8080
    [10004] => proxy
    [10015] => method=GET&access_token=xxxxxxxxxxxxxxxxxx
    [10002] => https://graph.facebook.com/naitik
    [10023] => Array
        (
            [0] => Expect:
        )

)

ve baskı print_r (curl_error ($ ch)); dönen:

Received HTTP code 403 from proxy after CONNECT

Ne opptions işe almak için kullanılmalıdır?

0 Cevap