Giter Club home page Giter Club logo

node-moves's Introduction

Build Status Moves API for Node

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.

Install

npm install moves

Oauth

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'
      })

Start Auth Flow

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)

Retrieve a token

  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
  })

Get information about a token

  moves.token_info(access_token, function(error, response, body) {
    
  })

Refresh an access token

  moves.refresh_token(refresh_token, function(error, response, body) {
  
  })

Using the API

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) {
  
  })

node-moves's People

Contributors

tyke avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.