REST-API--设计简单博客API

要求

仿造github设计一个博客网站的REST API
获取用户所有的articles目录

GET /username/

获取所有的articles摘要

GET /username/articles

获取指定题目的articles细节

GET /username/articles/title

发布articles使用POST请求

POST /username/articles

更新文章使用PUT

PUT /username/articles/helloworld

删除一篇文章根据题目

DELETE /username/articles/title

认证报错信息:
403:访问过于频繁或者是未通过身份验证

curl -i https://api.blog.com -u valid_username:valid_password
HTTP/1.1 403 Forbidden
{
  "message": "Maximum number of login attempts exceeded. Please try again later.",
  "documentation_url": "https://developer.blog.com/v3"
}

401: 验证无效

curl -i https://api.blog.com -u foo:bar
HTTP/1.1 401 Unauthorized
{
  "message": "Bad credentials",
  "documentation_url": "https://developer.blog.com/v3"
}

客户端报错信息:
400:无效的JSON格式:

HTTP/1.1 400 Bad Request
Content-Length: 35

{"message":"Problems parsing JSON"}

422:无效字段

HTTP/1.1 422 Unprocessable Entity
Content-Length: 149

{
  "message": "Validation Failed",
  "errors": [
    {
      "resource": "Issue",
      "field": "title",
      "code": "missing_field"
    }
  ]
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值