Skip to content

Instantly share code, notes, and snippets.

@TakesxiSximada
Created May 3, 2020 03:47
Show Gist options
  • Save TakesxiSximada/ce8155ebbed093a9f74c9787953e3937 to your computer and use it in GitHub Desktop.
Save TakesxiSximada/ce8155ebbed093a9f74c9787953e3937 to your computer and use it in GitHub Desktop.
twitcasting http request
# -*- rectclient -*-
:ACCESS_TOKEN =
:MOVIE_ID =
POST https://apiv2.twitcasting.tv/movies/:MOVIE_ID/comments
Accept: application/json
Content-Type: application/json
X-Api-Version: 2.0
Authorization: Bearer :ACCESS_TOKEN
{
"comment": "初見です",
"sns": "none"
}
# -*- rectclient -*-
:ACCESS_TOKEN =
:MOVIE_ID =
GET https://apiv2.twitcasting.tv/movies/:MOVIE_ID/comments?offset=10&limit=10
Accept: application/json
Content-Type: application/json
X-Api-Version: 2.0
Authorization: Bearer :ACCESS_TOKEN
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment