cURL post not working PHP

前端 未结 5 1278
感情败类
感情败类 2021-01-01 00:11

I\'m having trouble using cURL for a specific page.

A live code working: http://svgen.com/jupiter.php

Here is my code:

    $url = \'https://u         


        
5条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-01 00:56

    You're on a secure connection, why are you using :

    curl_setopt($ch, CURLOPT_PROTOCOLS, CURLPROTO_HTTP);
    

    Use instead :

    curl_setopt($ch, CURLOPT_PROTOCOLS, CURLPROTO_HTTPS);
    

提交回复
热议问题