저는 macOS 13을 사용하고 있으며 터미널에서 다음과 같이 프록시를 설정합니다.
➜ depot_tools git:(d9e2d479) env|grep all_proxy
all_proxy=socks5://127.0.0.1:7890
그런 다음 다음과 같이 컬 명령을 사용합니다.
➜ depot_tools git:(d9e2d479) curl -L -v https://www.facebook.com
* Uses proxy env variable all_proxy == 'socks5://127.0.0.1:7890'
* Trying 127.0.0.1:7890...
* SOCKS5 connect to IPv4 31.13.76.99:443 (locally resolved)
* SOCKS5 request granted.
* Connected to (nil) (127.0.0.1) port 7890 (#0)
* ALPN: offers h2
* ALPN: offers http/1.1
* CAfile: /etc/ssl/cert.pem
* CApath: none
* (304) (OUT), TLS handshake, Client hello (1):
* LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to www.facebook.com:443
* Closing connection 0
curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to www.facebook.com:443
127.0.0.1:7890
Google 크롬에서 Facebook에 액세스하는 데 사용할 수 있기 때문에 작동한다고 확신합니다 . 제가 뭔가 놓치고 있는 것이 있나요? 이 문제를 해결할 수 있나요?