小编Dav*_*hen的帖子

cURL请求从imgur api获得NULL响应

    $image = file_get_contents($_FILES['upload']['tmp_name']);
    $id = 'myid';
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, 'https://api.imgur.com/3/image.json');
    curl_setopt($ch, CURLOPT_POST, TRUE);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Authorization: Client-ID ' . $id));
    curl_setopt($ch, CURLOPT_POSTFIELDS, array( 'image' => base64_encode($image) ));
    $response = curl_exec($ch);
    curl_close($ch);
    $response = json_decode($response);
Run Code Online (Sandbox Code Playgroud)

这是我必须将匿名图片上传到imgur的引用块.它适用于我的mac os机器上的xampp,但它不能在我的Windows上使用xampp.我也知道关于windows xampp卷曲的以下内容:

-it is enabled
-it works when i try to grab the content of an url
-it doesnt work when i try to make DELETE request to remove an anonymous image(the same code works on the mac os …
Run Code Online (Sandbox Code Playgroud)

php api xampp curl imgur

2
推荐指数
1
解决办法
3054
查看次数

标签 统计

api ×1

curl ×1

imgur ×1

php ×1

xampp ×1