api的简单调用,调用api的方法
方法一:用前端方法调用api
完整代码:
<!DOCTYPE html> <html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<style> </style>
<body>
<button onclick = request()>tijiao</button>
</body>
</html>
<script>
function request() {
var xhr = new XMLHttpRequest;
xhr.onreadystatechange = function () {
if (this.readyState == 0) {
console.log("UNSENT open 尚未调用");
} else if (this.readyState == 1) {
console.log("OPEND open 已调用");
} else if (this.readyState == 2) {
console.log("接收头消息");
} else if (this.readyState == 3) {
console.log("接收响应主体");
} else {
console.log(JSON.parse(this.responseText));
}
};
xhr.open('GET', "http://route.showapi.com/90-87?showapi_appid=45300&showapi_sign=c28de9d6f79e44369a9abcd40fa3e277");
xhr.send();
}
</script>
如果你想直接使用我上述代码,也是可以的,直接复制就好.
我解释一下上面的那个url(其实就是我们调用的api):
红色部分: 表示这个api的提供商,不是同一个api,后面的数字不一样
绿色部分: 表示这个api的appid,自己申请到api后,都会有自己的appid
黄色部分: 表示这个api的appkye,每个应用的appid和appkey申请完,自己都是可以看到的.
然后根据我上面的格式拼接到一块儿就可以调用了. 方法二:用php方法调用api
完整代码如下:
<?php
header("content-type:text/html; charset=utf-8");
$fp = fopen("http://route.showapi.com/341-1?showapi_appid=35585&showapi_sign=249e47ff8d5e4bf7b44d55a42e0163ef", "r");
stream_get_meta_data($fp);
$result = "";
while (!feof($fp)) {
$result .= fgets($fp, 1024);
}
echo $result;
fclose($fp);
这个是php调用api的方法,api的拼接和上述一样,最后的那个棕色的 "r" 意思是只读模式. 原创文章,未经允许,请勿转载!