1

为了说明我的问题,我从 Apiary.io 蓝图教程中制作了一个精简示例。

FORMAT: 1A

# Gist Fox API

# Group Gist
Gist-related resources of *Gist Fox API*.

## Gists Collection [/gists{?since}]

### List All Gists [GET]
+ Parameters
    + since (optional, string) ... Timestamp in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ` Only gists updated at or after this time are returned.

+ Response 200

        {
            items: []
        }

### Create a Gist [POST]
To create a new Gist simply provide a JSON hash of the *description* and *content* attributes for the new Gist. 

+ Request (application/json)

        {
            "description": "Description of Gist",
            "content": "String content"
        }

+ Response 201

        {
        }

然后在我的养蜂场文档中,我得到以下信息:

GET   /gists{?since}
POST  /gists{?since}

since但是,对我来说,仅将查询参数用于 GET 请求是有意义的。不幸的是,我没有找到实现此结果的方法:

GET   /gists{?since}
POST  /gists

有可能吗?

4

1 回答 1

0

更新

(2014 年 10 月 23 日,星期四)

修复已部署;你能试一试,让我知道一切是否按预期工作吗?


坏消息

这是我们的(养蜂场)错误,您没有做错任何事情:-(

好消息

这是我们目前正在处理的一个已知错误,它将在本周末(2014 年 10 月 19 日,星期日)修复:-)

于 2014-10-15T15:48:06.893 回答