Skip to content
Server
2013.04.20 08:08

PHP Proxy 가져오기

조회 수 14181 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

 

<?
$proxy_user = 'Michiel';
$proxy_pass = 'mypassword';
$proxy_url = 'myproxyurl:port';
$proxy = true;

$service_url = "https://www.myapiurltocall.com";
$service_user = 'user:password:FO';
$service_pass = 'password';

$ch = curl_init($service_url);

// Set proxy if necessary
if ($proxy) {
    curl_setopt($ch, CURLOPT_PROXY, $proxy_url);
    curl_setopt($ch, CURLOPT_PROXYUSERPWD, $proxy_user.':'.$proxy_pass);
    curl_setopt($ch, CURLOPT_PROXYPORT, 8080);
    curl_setopt($ch, CURLOPT_PROXYAUTH, CURLAUTH_NTLM);
}

// Set service authentication
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
curl_setopt($ch, CURLOPT_USERPWD, "{$service_user}:{$service_pass}");

// HTTP headers
$headers['Authorization'] = 'Basic ' . base64_encode("$proxy_user:$proxy_pass");

curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);   
curl_setopt($ch, CURLOPT_VERBOSE, 1);
curl_setopt($ch, CURLOPT_HEADER, TRUE);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_ENCODING, '');
curl_setopt($ch, CURLOPT_TIMEOUT, 15);

//WARNING: this would prevent curl from detecting a 'man in the middle' attack
curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);

$data = curl_exec($ch);
?>

 

웹프록시 리스트 : http://incloak.com/proxy-list/?maxtime=500&type=h

로그인 후 댓글쓰기가 가능합니다.

?

  1. 27
    Apr 2013
    11:17

    갤럭시S GPS 향상 방법

    Category유용한상식 Views12696
    Read More
  2. 27
    Apr 2013
    11:14

    3G가 안터질때의 대처방법

    Category유용한상식 Views8715
    Read More
  3. 27
    Apr 2013
    11:01

    3G가 안터질때의 대처방법

    Category유용한상식 Views11120
    Read More
  4. 27
    Apr 2013
    09:25

    무선 인터넷의 속도와 품질 이해

    Category컴퓨터잡담 Views9024
    Read More
  5. 26
    Apr 2013
    08:35

    안드로이드 동영상 재생시 파란색 물음표 박스만 나올때 조치방법

    Category컴퓨터잡담 Views39285
    Read More
  6. 20
    Apr 2013
    09:24

    IP공유기 각사별 초기세팅값

    Category컴퓨터잡담 Views6320
    Read More
  7. 20
    Apr 2013
    08:08

    PHP Proxy 가져오기

    CategoryServer Views14181
    Read More
  8. 18
    Apr 2013
    14:27

    텍스트를 한글로 읽어주는 사이트

    Category컴퓨터잡담 Views9527
    Read More
  9. 18
    Apr 2013
    12:36

    HDTV 방송용 채널 배정표

    Category유용한상식 Views7877
    Read More
  10. 17
    Apr 2013
    08:36

    (펌)개성공단에서 4월 13일 나온 근무자입니다

    Category일상 Views20468
    Read More
Board Pagination Prev 1 ... 135 136 137 138 139 ... 235 Next
/ 235

http://urin79.com

우린친구블로그

sketchbook5, 스케치북5

sketchbook5, 스케치북5

나눔글꼴 설치 안내


이 PC에는 나눔글꼴이 설치되어 있지 않습니다.

이 사이트를 나눔글꼴로 보기 위해서는
나눔글꼴을 설치해야 합니다.

설치 취소