| 接口地址:https://test.harumoe.cn/api/other/base64 | 
|---|
| 返回格式:json | 
| 请求方式:get | 
| 请求示例:https://test.harumoe.cn/api/other/base64?url=网路图片 | 
| 名称 | 类型 | 必填 | 说明 | 
|---|---|---|---|
| url | string | 必填 | 网络图片链接地址 | 
| lang | string | 选填 | 语言类型(zh-cn、ru-ru、en-us、ja-jp、ko-kr) | 
| cache | bool | 选填 | 是否获取缓存数据 | 
| 名称 | 类型 | 说明 | 
|---|---|---|
| url | string | 图片地址 | 
| base64 | string | base64图片 | 
{
	"code": 200,
	"msg": "数据请求成功!",
	"data": {
		"url": "https:\/\/cdn.inis.cc\/comm\/assets\/images\/bg\/16.jpg",
		"base64": "data:image..."
	}
}| 错误码 | 说明 | 
|---|---|
| 204 | 数据为空 | 
| 400 | 格式错误 | 
| 403 | 无权限 | 
<?php
/**
 * Created by PhpStorm.
 * User: FZS
 * Time: 2023/08/03 14:26
 */
class freeApi
{
    private $apiUrl;
    public function __construct()
    {
        $this->apiUrl = 'https://test.harumoe.cn/api/other/base64?url=网路图片';
    }
    /**
     * 获取结果
     * @return array
     */
    public function getResult()
    {
        return file_get_contents($this->apiUrl);
    }
}package main
import (
	"fmt"
	"io/ioutil"
	"log"
	"net/http"
)
const (
	APIURL   = "https://test.harumoe.cn/api/other/base64?url=网路图片"
)
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))
}