This provides a wrapper to the Moves API. Please refer to the documentation before getting started. You'll need a client before you can begin.
npm install moves
initialize with client information as created at (https://dev.moves-app.com/clients)
var Moves = require('moves') , moves = new Moves({ client_id: 'your client id' , client_secret: 'your client secret' , redirect_uri: 'your redirect uri' })
Either
var authorize_url = moves.authorize({ scope: ['activity', 'location'] //can contain either activity, location or both , state: 'my_state' //optional state as per oauth })
Or
Optionally pass in an Express Response Object and it will automatically redirect the user
moves.authorize({ scope: ['activity', 'location'] //can contain either activity, location or both , state: 'my_state' //optional state as per oauth }, response)
moves.token('code returned from authorize step above', function(error, response, body) { var access_token = body.access_token , refresh_token = body.refresh_token , expires_in = body.expires_in })
moves.token_info(access_token, function(error, response, body) { })
moves.refresh_token(refresh_token, function(error, response, body) { })
Now that we have a valid access token, we can hit any endpoints that our token is correctly scoped to
moves.get('/user/profile', access_token, function(error, response, body) { }) moves.get('/user/summary/daily?from=&to=', access_token, function(error, response, body) { })