社区API接口文档, 用于在社区发布内容
POST
社区帐号需要关联企业信息,去关联
参数名 | 示例值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
Content-Type | application/x-www-form-urlencoded | String | 是 | - |
x-api-key | - | String | 是 | Api Key 生成/查看 |
参数名 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|
name | String | 是 | 招聘名称 |
content | String | 是 | 招聘描述 |
types | String | 否 | 招聘工作类型,示例填写内容 "全职"、"兼职"、"远程"、"实习",不填默认为 "不限" |
work_year | String | 否 | 工作经验要求,示例填写内容 "1\~3年"、"3\~5年"、"5年以上",不填默认为 "不限" |
education | String | 否 | 学历要求,示例填写内容 "大专"、"本科"、"硕士"、"博士",不填默认为 "不限" |
salary | String | 否 | 薪资范围,示例填写内容 "5\~10k"、"10\~20K"、"20\~50k"、"50K以上",不填默认为 "面议" |
address | String | 否 | 工作地点 |
curl --request POST \
--url https://learnblockchain.cn/api/post/recruit \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'x-api-key: ' \
--data 'name=合约开发工程师' \
--data 'content=主要负责项目合约开发...' \
--data 'types=全职' \
--data 'work_year=1~3年' \
--data 'education=本科' \
--data 'salary=10~20K' \
--data 'address=上海市浦东新区'
{
"code": 0,
"message": "招聘信息发布成功!"
}
{
"code": -1005,
"message": "招聘信息发布失败, 请稍后再试...!"
}
POST
参数名 | 参数值 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|---|
Content-Type | application/x-www-form-urlencoded | String | 是 | - |
x-api-key | - | String | 是 | Api Key 生成/查看 |
参数名 | 参数类型 | 是否必填 | 参数描述 |
---|---|---|---|
title | String | 是 | 文章标题 |
content | String | 是 | 文章正文 |
summary | String | 否 | 文章摘要 |
price | String | 否 | 阅读全文需要使用的学分数,默认为免费阅读 |
logo | String | 否 | 文章封面图片链接地址 |
type | Integer | 否 | 文章类型,填写内容 1: 原创, 2: 翻译, 3: 转载,可不填 |
link | String | 否 | 转载链接,类型为转载时可填写 |
is_public | Integer | 否 | 文章是否公开,填写内容 1: 公开, 2: 仅自己可见,不填默认为公开 |
category_id | Integer | 否 | 填写文章分类ID,填写内容为以下分类ID,5: 以太坊, 7: Solidity, 8: 入门, 13: 安全, 23: 零知识, 27: DeFi,可不填 |
curl --request POST \
--url https://learnblockchain.cn/api/post/article \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'content-type: application/x-www-form-urlencoded' \
--header 'x-api-key: ' \
--data 'title=每周以太坊进展' \
--data 'content=正文内容...' \
--data 'summary=摘要内容...' \
--data 'price=10' \
--data 'logo= https://img.zcool.cn/community/01c94c563736d66ac7259e0fd89fcb.jpg@2o.jpg' \
--data 'type= 3' \
--data link=https://learnblockchain.cn/article/5722 \
--data 'is_public=1' \
--data 'category_id=7'
{
"code": 0,
"message": "文章发布成功!"
}
{
"code": -1006,
"message": "文章发布失败, 请稍后再试...!"
}
如果觉得我的文章对您有用,请随意打赏。你的支持将鼓励我继续创作!