我正在使用pCloud Api从请求中获取下载链接。这是一个GET请求。当我请求表单浏览器时,我可以得到响应。但是当我使用jQuery时,我得到了一个响应代码result : 7010
Api请求网址:https://api.pcloud.com/getpublinkdownload?code=8eM7
我从浏览器请求时收到此回复:
{
"result": 0,
"expires": "Mon, 07 Aug 2017 00:12:50 +0000",
"dwltag": "aftsTab2SLkC4MDXRdp6Am",
"path": "\/cBZkvG2cXZNPjykVZZZChTDE7ZNVZZj5JZkZSqfRZIXZqkZmVZR7Zd7Z4ZfkZIZyVZokZbXZ3VZFkZ77ZIgCcZ14l5zXbx6p4GwdeEPdF1707nIPm7\/image%20%286%29.jpg",
"hosts": [
"p-def2.pcloud.com",
"c166.pcloud.com"
]
}
我需要hosts
和path
来生成下载链接。我只需要这个 - https://c166.pcloud.com/cBZkvG2cXZNPjykVZZZChTDE7ZNVZZj5JZkZSqfRZIXZqkZmVZR7Zd7Z4ZfkZIZyVZokZbXZ3VZFkZ77ZIgCcZ14l5zXbx6p4GwdeEPdF1707nIPm7/image%20%286%29.jpg
我必须使用jQuery / JavaScript来获得此响应。我尝试了PHP file_get_contents();
它可以工作但这个链接只能用于你请求的IP地址。所以,我必须使用JQ / JS。
我的代码:
$(document).ready(function(){
function httpGet(theUrl){
var xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", theUrl, false ); // false for synchronous request
xmlHttp.send( null );
return xmlHttp.responseText;
}
console.log(httpGet("https://api.pcloud.com/getpublinkdownload?code=8eM7"));
});
感谢您试图帮助我。
答案 0 :(得分:1)
似乎pCloud服务器正在检查引用者。 在大多数情况下,服务器将拒绝不是来自自己的访问。
只有来自一小组已批准(登录)页面的网络浏览器才能获得访问权限;这有助于在https://en.wikipedia.org/wiki/HTTP_referer
的一组合作支付中分享资料在下面的html中,脚本运行并成功获取了图像URL,但浏览器在尝试加载图像时出现错误。
<html>
<head>
</head>
<script
src="http://code.jquery.com/jquery-3.2.1.js"
integrity="sha256-DZAnKJ/6XZ9si04Hgrsxu/8s717jcIzLy3oi35EouyE="
crossorigin="anonymous"></script>
<body>
<h1>Load Image from pCloud </h1>
<img class="loading">
<script>
$(document).ready(function() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
if (this.responseText){
var host = JSON.parse(this.responseText).hosts[0];
var path = JSON.parse(this.responseText).path;
}
$(".loading").attr("src", "https://" + host + path);
}
};
xhttp.open("GET", "https://api.pcloud.com/getpublinkdownload?code=8eM7", true);
xhttp.send();
});
</script>
</body>
</html>