京东图床上传api接口源码

京东首页有个以图搜商品的功能,

在这里上传图片后,图片会被储存到京东的 jfs 里,同时返回 jfs key,

然后我们可以利用商品图片的链接构造进行访问。

支持格式 jpg 、 png 、 bmp

支持大小 5MB

CDN 节点 国内网宿,国外 AKAMAI

img10.360buyimg.com

img10.joybuy.com

优点 大厂稳定,连接速度快,自身量那么多没空删你

回复查看PHP源代码
[reply]
<? php
if (class_exists('CURLFile')) { // php 5.5
$post['file'] = new CURLFile(realpath($_FILES['Filedata']['tmp_name']));
} else {
$post['file'] = '@'.realpath($_
FILES['Filedata']['tmp_name']);
}
$rel = get_curl('https://search.jd.com/image?op=upload', $post);
preg_match('/callback(?:(")(.*)(?:"))/i', $rel, $matches);
if (!$matches[1]) {
exit('图片上传失败!');
}
$arr = array(
'code' => 200,
'imgurl' => 'https://img'.rand(10, 14).
'.360buyimg.com/uba/'.$matches[1]
);
exit(json_encode($arr));

function get_curl($url, $post = 0, $referer = 0, $cookie = 0, $header = 0, $ua = 0, $nobaody = 0) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
$httpheader[] = "Accept:application/json";
$httpheader[] = "Accept-Encoding:gzip,deflate,sdch";
$httpheader[] = "Accept-Language:zh-CN,zh;q=0.8";
$httpheader[] = "Connection:close";
curl_setopt($ch, CURLOPT_HTTPHEADER, $httpheader);
if ($post) {
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
}
if ($header) {
curl_setopt($ch, CURLOPT_HEADER, true);
}
if ($cookie) {
curl_setopt($ch, CURLOPT_COOKIE, $cookie);
}
if ($referer) {
if ($referer == 1) {
curl_setopt($ch, CURLOPT_REFERER, 'https://zerossl.pages.dev/');
} else {
curl_setopt($ch, CURLOPT_REFERER, $referer);
}
}
if ($ua) {
curl_setopt($ch, CURLOPT_USERAGENT, $ua);
} else {
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Linux; U; Android 4.0.4; es-mx; HTC_One_X Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0");
}
if ($nobaody) {
curl_setopt($ch, CURLOPT_NOBODY, 1);
}
curl_setopt($ch, CURLOPT_TIMEOUT, 3);
curl_setopt($ch, CURLOPT_ENCODING, "gzip");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$ret = curl_exec($ch);
curl_close($ch);
return $ret;
}

[/reply]

2 个赞

666

mjj真是人才,哪里都能找到口子。

1 个赞

能保存多久呢

真牛来看看

谁要学而思的?

还不如这个

https://imgcdn.bolgk.eu.org

https://imgcdn.bolgk.eu.org/file/49cb24bfe9d84247222ef.png

修改过代码

``` <?php if (class_exists('CURLFile')) { $post['file'] = new CURLFile(realpath($FILES['Filedata']['tmp_name'])); } else { $post['file'] = '@' . realpath($FILES['Filedata']['tmp_name']); } $rel = get_curl('https://search.jd.com/image?op=upload', $post); preg_match('/callback(?:(\"))(.*)(?:\")/i', $rel, $matches); if (!$matches[1]) { exit('图片上传失败!'); } $arr = array( 'code' => 200, 'imgurl' => 'https://img' . rand(10, 14) . '.360buyimg.com/uba/' . $matches[1] ); exit(json_encode($arr));

function get_curl($url, $post = null, $referer = null, $cookie = null, $header = null, $ua = null, $nobody = null) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
$httpheader = array(
“Accept:application/json”,
“Accept-Encoding:gzip,deflate,sdch”,
“Accept-Language:zh-CN,zh;q=0.8”,
“Connection:close”
);
curl_setopt($ch, CURLOPT_HTTPHEADER, $httpheader);
if ($post !== null) {
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
}
if ($header !== null) {
curl_setopt($ch, CURLOPT_HEADER, true);
}
if ($cookie !== null) {
curl_setopt($ch, CURLOPT_COOKIE, $cookie);
}
if ($referer !== null) {
curl_setopt($ch, CURLOPT_REFERER, $referer);
}
if ($ua !== null) {
curl_setopt($ch, CURLOPT_USERAGENT, $ua);
} else {
curl_setopt($ch, CURLOPT_USERAGENT, “Mozilla/5.0 (Linux; U; Android 4.0.4; es-mx; HTC_One_X Build/IMM76D) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0”);
}
if ($nobody !== null) {
curl_setopt($ch, CURLOPT_NOBODY, true);
}
curl_setopt($ch, CURLOPT_TIMEOUT, 3);
curl_setopt($ch, CURLOPT_ENCODING, “gzip”);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$ret = curl_exec($ch);
curl_close($ch);
return $ret;
}
?>
```

为什么隐藏啊啊啊

666666

wc 6666

才华666

感谢分享

666,看看是怎么样

真的是玩的明明白白得,感谢分享

有没有Python版本的。。。PHP太难了,看不懂啊。。。

这个牛

这个牛

奥利给

测试后没用

@“上官的的”#p27760 你测试的是他给的网址吗?那天我用的可以那就是被他停了。