How to get an access token?
Run this command with your client_id and client_secret:
curl -F grant_type=client_credentials -F client_id=YOUR_CLIENT_ID -F client_secret=YOUR_CLIENT_SECRET -X POST http://smrttouch.com/oauth/token
After that, you'll get a json response with the access_token and other extra data:
{
"access_token":"9a899533f87cb78f47c62e606182582cff2c36b80d950414dab7e7a1ba237b19",
"token_type":"bearer",
"expires_in":86400,
"scope":"public"
}