About BOX API file download

回答済み
新規投稿

コメント

1件のコメント

  • kishimoto2

    I understood the cause

    An unnecessary setting was included in the option setting of the curl library.

     

    // Mistake part
    $curl = curl_init($dl_api);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
    curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'GET');
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);

    $response = curl_exec($curl)

     

    // Modified part
    $curl = curl_init($dl_api);
    curl_setopt($curl, CURLOPT_HTTPHEADER, $header);
    curl_setopt($curl, CURLOPT_CUSTOMREQUEST, 'GET');

    $response = curl_exec($curl)

     

    0
    コメントアクション パーマリンク

サインインしてコメントを残してください。