Skip to content

API doc

Yusuke Iwaki edited this page Jun 22, 2016 · 2 revisions

GET /api/user

ログインユーザの情報

$ http GET http://localhost:3000/api/user 
HTTP/1.1 200 OK

{
    "user": {
        "email": "yusuke.iwaki@example.com", 
        "id": 1, 
        "image": "https://lh4.googleusercontent.com/-c__sR1fSMrc/AAAAAAAAAAI/AAAAAAAAABU/083HHTwbP9w/photo.jpg", 
        "name": "岩木祐輔"
    }
}

GET /api/poems

GET /api/user/poems

ポエム一覧を取得

key type 説明
count integer? 取得件数
last_id integer? idが"last_idより前の"ポエムを取得
$ http GET http://localhost:3000/api/poems?count=5
HTTP/1.1 200 OK

{
    "has_more": true, 
    "poems": [
        {
            "author": {
                "id": 83, 
                "image": "https://robohash.org/ut.jpg?size=128x128&set=set1", 
                "name": "後藤 大翔"
            }, 
            "created_at": "2016-06-23T00:20:24.000+09:00", 
            "id": 123, 
            "title": "Voluptatibus aspernatur qui ex in atque odit necessitatibus assumenda."
        }, 
        {
            "author": {
                "id": 82, 
                "image": "https://robohash.org/rerum.jpg?size=128x128&set=set1", 
                "name": "石田 太一"
            }, 
            "created_at": "2016-06-23T00:20:24.000+09:00", 
            "id": 122, 
            "title": "Sapiente quasi occaecati aspernatur officiis molestiae et explicabo."
        }, 
        {
            "author": {
                "id": 81, 
                "image": "https://robohash.org/rerum.jpg?size=128x128&set=set1", 
                "name": "伊藤 楓"
            }, 
            "created_at": "2016-06-23T00:20:24.000+09:00", 
            "id": 121, 
            "title": "Et assumenda voluptate est enim."
        }, 
        {
            "author": {
                "id": 80, 
                "image": "https://robohash.org/veritatis.jpg?size=128x128&set=set1", 
                "name": "谷口 一郎"
            }, 
            "created_at": "2016-06-23T00:20:24.000+09:00", 
            "id": 120, 
            "title": "Omnis distinctio nesciunt voluptatem aut ex voluptatum."
        }, 
        {
            "author": {
                "id": 79, 
                "image": "https://robohash.org/et.jpg?size=128x128&set=set1", 
                "name": "上田 優斗"
            }, 
            "created_at": "2016-06-23T00:20:24.000+09:00", 
            "id": 119, 
            "title": "Dolores quia error sunt sapiente assumenda voluptatum distinctio."
        }
    ]
}


$ http GET "http://localhost:3000/api/poems?count=5&last_id=119"
HTTP/1.1 200 OK

{
    "has_more": true, 
    "poems": [
        {
            "author": {
                "id": 78, 
                "image": "https://robohash.org/sit.jpg?size=128x128&set=set1", 
                "name": "大野 莉子"
            }, 
            "created_at": "2016-06-23T00:20:24.000+09:00", 
            "id": 118, 
            "title": "Nostrum voluptas laborum et a ipsam."
        }, 
        {
            "author": {
                "id": 77, 
                "image": "https://robohash.org/sed.jpg?size=128x128&set=set1", 
                "name": "長谷川 楓"
            }, 
            "created_at": "2016-06-23T00:20:24.000+09:00", 
            "id": 117, 
            "title": "Et fugiat tempore tempora assumenda voluptas."
        }, 
        {
            "author": {
                "id": 76, 
                "image": "https://robohash.org/asperiores.jpg?size=128x128&set=set1", 
                "name": "横山 優"
            }, 
            "created_at": "2016-06-23T00:20:24.000+09:00", 
            "id": 116, 
            "title": "Autem beatae error officia ipsa."
        }, 
        {
            "author": {
                "id": 75, 
                "image": "https://robohash.org/quisquam.jpg?size=128x128&set=set1", 
                "name": "竹内 優衣"
            }, 
            "created_at": "2016-06-23T00:20:24.000+09:00", 
            "id": 115, 
            "title": "Unde laudantium corporis officiis consequatur."
        }, 
        {
            "author": {
                "id": 74, 
                "image": "https://robohash.org/recusandae.jpg?size=128x128&set=set1", 
                "name": "木村 裕子"
            }, 
            "created_at": "2016-06-23T00:20:24.000+09:00", 
            "id": 114, 
            "title": "Voluptatibus consequuntur et ut cum omnis."
        }
    ]
}

POST /poems

ポエムを投稿

POST /poems/:id/read_poems

ポエムに「よんだよ」を追加

DELETE /poems/:poem_id/read_poems/:id

ポエムの「よんだよ」を削除

POST /api/markdown_previews

マークダウン