内容分类操作
获取内容分类详情
curl -X GET \
-H "Authorization: Bearer cfb5912724dd7ff0b0c17683cc3074bb548bc7f4" \
-H "Content-Type: application/json" \
https://cloud.minapp.com/oserve/v2.2/content/1/category/1/var request = require("request");
var options = { method: 'GET',
url: 'https://cloud.minapp.com/oserve/v2.2/content/1/category/1/',
headers:
{ 'Content-Type': 'application/json',
Authorization: 'Bearer cfb5912724dd7ff0b0c17683cc3074bb548bc7f4' } };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});参数
类型
说明
获取内容分类列表
创建内容分类
参数
类型
必填
说明
编辑内容分类
删除内容分类
Last updated
Was this helpful?