Skip to content
Matt Bierner edited this page May 20, 2015 · 1 revision

You can get metadata about an existing token by sending the token value in a GET request to:

GET https://blot.re/v0/oauth2/token_info?token=TOKEN

The provided token may be an access or refresh token.

Example

GET https://blot.re/v0/oauth2/token_info?token=Yzc1YjEzZmEtYjE4Ni00YWNkLWI3NGQtNTFkODVjMjg1MmE4
{
    "issued": 1432020415125,
    "expires_in": 186787,
    "client_id": "555ae5b53004fc1a44acfe1c",
    "user": {
        "id": "5550f2a63004a531be8820c5",
        "userName": "Matt",
        "rootStream": "5550fcc9300496217de54ebf"
    }
}
Clone this wiki locally