gpt4 book ai didi

javascript - 无法使用 jQuery 访问 API

转载 作者:行者123 更新时间:2023-11-30 21:17:26 25 4
gpt4 key购买 nike

我正在使用 pCloud Api 从请求中获取下载链接。这是一个 GET 请求。当我请求表单浏览器时,我可以获得响应。但是当我使用 jQuery 时,我得到一个响应代码 result : 7010

API 请求 URL: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"
]
}

我需要这个 hostspath 来生成下载链接。我只需要这个-https://c166.pcloud.com/cBZkvG2cXZNPjykVZZZChTDE7ZNVZZj5JZkZSqfRZIXZqkZmVZR7Zd7Z4ZfkZIZyVZokZbXZ3VZFkZ77ZIgCcZ14l5zXbx6p4GwdeEPdF170 7nIPm7/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"));

});

感谢你试图帮助我。

最佳答案

pCloud 服务器似乎正在检查引荐来源网址。在大多数情况下,服务器将拒绝不是来自其自身的访问。

只有来自一小部分已批准(登录)页面的 Web 浏览器才能访问;这有助于在来自 https://en.wikipedia.org/wiki/HTTP_referer 的一组合作付费站点之间共享 Material

在下面的 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>

关于javascript - 无法使用 jQuery 访问 API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45535199/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com