본문 바로가기
개발/php

HTTPS connections over proxy are currently not supported

by 향유 2021. 1. 12.

snoopy 프록시 우회를 사용할 경우

 

https 접속시 아래와 같은 메세지를 표출하는 경우가 있다.

HTTPS connections over proxy are currently not supported

해결 방법은아래 소스로 넘기는 url 값을 변경하면 된다.

    $snoopy->referer = $url;
    $snoopy->fetch($url);

 

에 넘기는 파라미터값을 https->http로 변경하면 된다.

예제 소스는 아래와 같다.

$url=str_replace("https","http",$url)

댓글