通过GET方法发送http请求

时间:2020-10-16 07:13:54

标签: php api http get

我试图通过GET方法访问API,但是每次都不返回任何内容。这是我到目前为止尝试过的代码:

    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, 'https://api.printful.com');
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'get');
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array("Content-Type: application/json"));
    
    $output = curl_exec($ch);
    $info = curl_getinfo($ch);
    curl_close($ch);
    print_r($info);
    if ($info['http_code'] == 200) {
        print_r(json_decode ($output, true));
    } else {
           print_r(array("error" => array("message" => "ERROR: " . $info['http_code'])));
      }

当尝试在浏览器中输入URL时,将带来结果。

1 个答案:

答案 0 :(得分:1)

请求方法必须为大写。如果您执行GET请求,甚至可以放弃它,因为这是默认设置,除非您不使用发布数据。

删除行

curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'get');

输出将是

Array
(
    [code] => 200
    [result] => Welcome to the Printful API
    [extra] => Array
        (
        )

)