随机活动
其他 官方文档
寻找随机活动来对抗无聊,前提是你看明白英文
基本说明:
接口地址:https://www.boredapi.com/api/activity/
返回格式:json
请求方式:get
请求示例:https://www.boredapi.com/api/activity/
请求参数说明:
名称 类型 必填 说明
- - - -
返回参数说明:
名称 类型 说明
- - -
JSON返回示例:
{
	"activity": "Take a spontaneous road trip with some friends",
	"accessibility": 0.3,
	"type": "social",
	"participants": 4,
	"price": 0.2,
	"link": "",
	"key": "2085321"
}
服务级错误码参照
错误码 说明
- -
完整教学代码示例
<?php

/**
 * Created by PhpStorm.
 * User: FZS
 * Time: 2020/02/01 12:33
 */
//----------------------------------
// 随机活动 调用类
//----------------------------------
class freeApi
{
    private $apiUrl;

    public function __construct()
    {
        $this->apiUrl = 'https://www.boredapi.com/api/activity/';
    }

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