当我将图像上传到imgur时,即使在指定的相册中,它也会进入我的帐户,但保持隐藏状态:( ?????
这使我成为邮递员,我做了测试。
我选择了“上传图片”
我在标题部分授权承载{{token}}中插入 专辑的哈希,标题,描述
给我这个代码
<?php
$request = new HttpRequest();
$request->setUrl('https://api.imgur.com/3/image');
$request->setMethod(HTTP_METH_POST);
$request->setHeaders(array(
'Postman-Token' => 'dbbf023e-642e-493a-9fe2-e57f61680068',
'cache-control' => 'no-cache',
'Content-Type' => 'application/x-www-form-urlencoded',
'Authorization' => 'Bearer {{token}}',
'content-type' => 'multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW'
));
$request->setBody('------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="image"
R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="album"
ZTgISJ7
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="title"
title test
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="description"
descri
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="image"
{{umg url}}
------WebKitFormBoundary7MA4YWxkTrZu0gW--');
try {
$response = $request->send();
echo $response->getBody();
} catch (HttpException $ex) {
echo $ex;
}
但是无论我尝试什么,图像都保持隐藏状态。
是否可以通过此方法上传图片并且该图片成为公开帖子?
公开帖子(我的意思是称为“与社区共享”的按钮)。
谢谢