朋友圈文案
最后更新于:2022-04-02 08:22:53
## 朋友圈文案
>[danger]### 会员接口,仅限会员使用,购买[API会员](https://market.topthink.com/product/210)
![](https://docs.gechiui.com/gc-content/uploads/sites/kancloud/e6/31/e631dca3e744c535e74cd4143655e28f_200x200.png)
> 每次请求随机返回一个适合发朋友圈的简单走心的文案句子。
## 接口调用([调用须知](https://docs.topthink.com/think-api/1835086))
### 请求地址
```
GET https://api.topthink.com/literary/quan
```
### 请求参数
无
### 返回`data`参数
| 名称 | 类型 | 示例值 | 说明 |
| --- | --- | --- | --- |
| content | string | 我经过你的世界,遇见了此生最美的风景。 | 内容 |
| source | string | 佚名 | 来源出处 |
## SDK调用
```
$client = new Client("YourAppCode");
$result = $client->literaryQuan()
->request();
```
返回示例:
~~~
{
"code":0,
"message": "成功",
"data": [
{
"content":"我经过你的世界,遇见了此生最美的风景。",
"source":"佚名"
}
]
}
~~~
';