歇后语
最后更新于:2022-04-02 08:21:36
## 歇后语
>[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/69/0f/690f7b46203dca3f8e194fdcd04fafed_200x200.png)
> 歇后语一种短小风趣又像谜语的句子。
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/wiki/xiehou
```
### 请求参数
| 名称 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| appCode| string| 是|用户授权码,参考[API调用](https://docs.topthink.com/think-api/1835086) |
| num| int| 否 | 返回数量,1-10|
### 返回`data`参数
| 名称 | 类型 | 示例值 | 说明 |
| --- | --- | --- | --- |
| quest | string | 江边上洗萝卜 | 问题 |
| result | string | 一个个来(比喻按次序地进行。) | 结果 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->wikiXiehou()
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"quest":"江边上洗萝卜",
"result":"一个个来(比喻按次序地进行。)"
}
]
}
~~~
';