文档
测试

故事列表 GET

GET
/api/stranger_community_storys

请求参数

参数名
类型
描述
必填
type
1 用户故事墙 2 用户自己发布 3 最新
必填
page
页数
可选
size
每页几条
可选
newbie
0老用户 1新用户
必填
user_id
当前用户id(如果type=2,则必传)
可选

响应参数

参数名
类型
描述
必填
array
数组
必填
id
string
故事id
必填
title
标题
必填
content
内容
必填
share_name
分享名
必填
create_date
创建时间
必填

说明 / 示例

# 请求示例 `{{url}}/api/stranger_community_storys?page=0&size=1` # 响应示例 ```json { "count": 2, "rows": [ { "_id": 1, "user_id": 2, "title": "hi there", "content": "i feel sad", "share_name": "a boy", "tag": null, "age": null, "exposure": null, "commented": null, "prayed": null, "internal_type": 1, "createdAt": "2020-11-09T02:57:39.000Z", "updatedAt": "2020-11-09T02:57:39.000Z", "deletedAt": null } ] } ```