基本信息
接口名称: 删除文章
接口类型: 数据删除
接口说明: 删除文章
详细信息
URL
https://www.baklib.com/api/v1/articles/:id
完整URL示例
https://www.baklib.com/api/v1/articles/2035cb75-8def-4136-9689-f53d1c204a09
HTTP请求方式
DELETE
授权认证方式
默认方式,需要添加请求header
Authorization: Bearer <token>
请求参数
参数 | 必选 | 类型及范围 | 说明 |
---|---|---|---|
id | true | String | 文章id |
tenant_id | true | Integer | 站点id |
示例代码
require 'faraday'
require 'json'
host = 'https://www.baklib.com'
client = Faraday.new(url: host) do |conn|
conn.headers['Authorization'] = "Bearer #{token}"
conn.headers['Content-Type'] = 'application/json'
conn.adapter :net_http
end
params = {
tenant_id: "#{tenant_id}",
}
response = client.delete("/api/v1/articles/#{article_id}", params)
JSON.parse(response.body)
返回结果
{
"code": 0,
"status": "success",
"message": "成功"
}
返回字段说明
返回值字段 | 字段类型 | 说明 |
---|---|---|
code | Integer | 状态码 |
status | String | 返回状态 |
message | String | 返回信息 |