LikeCoin API
LikeCoin API uses OAuth2.0 flow for API authorization, please refer to Authetication
section before you use any API.
Production endpoint: https://api.like.co
Development endpoint: https://api.rinkeby.like.co
Please contact team[at]like.co
for OAuth client id/secret and scope/redirect_uri whitelist.
Endpoints marks with a padlock requires authorization with
Please refer to Authetication
section below to learn how to obtain access_token
for an user.
Register
POSTCheck Liker ID/email available
Check if an LikerID and email is available
Also return possible alternative id if id already exists, please check exmaple requests for reference.
POSTRegister user via supported platforms
Register via API using supported oauth platform currently supported platforms: 'matters'
Authetication
LikeCoin API uses OAuth2.0 flow for API authorization, through the following steps.
- Users authorize your app through web ui
https://like.co/in/oauth
. For details and params, please refer to[For client user agent] User oAuth page
section below - Users are redirected back to a
redirect_uri
you own with acode
, thiscode
is used to exchange for a useraccess_token
andrefresh_token
. - Call apis using
access_token
with proper scope. e.g. APIs inLike->info
sections requiresread:like.info
orwrite:like.info
grants.
Available scopes:
The following scope should be prepended with read:
or write:
Token life time
Access tokens expire in 1 hour. Refresh tokens do not expire, unless:
- Another new refresh token was issued for the same oauth client & user combination
- User revoked access
- OAuth client revoked the token via API