接口地址:https://v2.alapi.cn/api/url |
---|
返回格式:json/text |
请求方式:get/post |
请求示例:https://v2.alapi.cn/api/url?url=https://www.free-api.com/&token=token |
名称 | 类型 | 必填 | 说明 |
---|---|---|---|
token | string | 必填 | 请求token 扫码关注公众号 |
url | string | 必填 | 要缩短的长网址 |
format | string | 选填 | 默认返回 json 格式,返回文本参数为 text |
名称 | 类型 | 说明 |
---|---|---|
type | string | 短网址类型 |
long_url | string | 原网址 |
short_url | string | 短网址 |
{
"code": 200,
"msg": "success",
"data": {
"type": "t.cn",
"long_url": "https://www.free-api.com/",
"short_url": "http://t.cn/AiNfilSR"
},
"Author": {
"name": "Alone88",
"desc": "由Alone88提供的免费API 服务,官方文档:www.alapi.cn"
}
}
错误码 | 说明 |
---|---|
404 | api 地址错误 |
422 | 网址格式错误 |
<?php
/**
* Created by PhpStorm.
* User: FZS
* Time: 2020/02/01 00:16
*/
class freeApi
{
private $apiUrl;
public function __construct()
{
$this->apiUrl = 'https://v1.alapi.cn/api/url?url=https://www.free-api.com/';
}
/**
* 获取结果
* @return array
*/
public function getResult()
{
return file_get_contents($this->apiUrl);
}
}
package main
import (
"fmt"
"io/ioutil"
"log"
"net/http"
)
const (
APIURL = "https://v1.alapi.cn/api/url"
)
func main() {
queryUrl := fmt.Sprintf("%s?url=https://www.free-api.com",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))
}