短链接
ROLL 官方文档
长链接生成短连接
基本说明:
接口地址:https://www.mxnzp.com/api/shortlink/create
返回格式:json
请求方式:get
请求示例:https://www.mxnzp.com/api/shortlink/create?url=url&app_secret=your&app_id=your
请求参数说明:
名称 类型 必填 说明
app_secret string 必填 app_secret 扫码关注公众号
app_id string 必填 app_id 扫码关注公众号
url string 必填 待生成短链的url地址,需要先用urf-8进行BASE64加密再传入
返回参数说明:
名称 类型 说明
shortUrl string 生成好的短链,可以直接访问
url string 你传入的原链接内容
JSON返回示例:
{
	"code": 1,
	"msg": "数据返回成功!",
	"data": {
		"shortUrl": "https://mxnzp.com/sl/zgLu",
		"url": "https://www.mxnzp.com"
	}
}
服务级错误码参照
错误码 说明
0 app_id或者app_secret不合法
完整教学代码示例
<?php
/**
 * Created by PhpStorm.
 * User: FZS
 * Time: 2022/11/03 09:56
 */
class freeApi
{
    private $apiUrl;

    public function __construct()
    {
        $this->apiUrl = 'https://www.mxnzp.com/api/shortlink/create?url=url&app_secret=your&app_id=your';
    }

    /**
     * 获取结果
     * @return array
     */
    public function getResult()
    {
        return file_get_contents($this->apiUrl);
    }
}
package main

import (
	"fmt"
	"io/ioutil"
	"log"
	"net/http"
)

const (
	APIURL   = "https://www.mxnzp.com/api/shortlink/create?url=url&app_secret=your&app_id=your"
)

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))
}