接口地址:https://v.api.aa1.cn/api/yiyan/index.php |
---|
返回格式:json |
请求方式:get |
请求示例:https://v.api.aa1.cn/api/yiyan/index.php |
名称 | 类型 | 必填 | 说明 |
---|---|---|---|
- | - | - | - |
名称 | 类型 | 说明 |
---|---|---|
- | - | 返回为text |
-
错误码 | 说明 |
---|---|
- | - |
<?php
/**
* Created by PhpStorm.
* User: FZS
* Time: 2023/12/10 12:56
*/
class freeApi
{
private $apiUrl;
public function __construct()
{
$this->apiUrl = 'https://v.api.aa1.cn/api/yiyan/index.php';
}
/**
* 获取结果
* @return array
*/
public function getResult()
{
return file_get_contents($this->apiUrl);
}
}
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
)
const (
APIURL = "https://v.api.aa1.cn/api/yiyan/index.php"
)
func main() {
queryUrl := fmt.Sprintf("%s",APIURL)
resp, err := http.Get(queryUrl)
if err != nil {
log.Println(err)
return
}
defer resp.Body.Close()
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}