diff options
Diffstat (limited to 'examples')
-rw-r--r-- | examples/sample_app.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/sample_app.js b/examples/sample_app.js new file mode 100644 index 0000000..a08b039 --- /dev/null +++ b/examples/sample_app.js @@ -0,0 +1,14 @@ +var Active911 = require('../lib/active911').Active911; + +var oauth_id = '12345'; +var oauth_secret = 'asdf'; +var oauth_scope = 'read_agency read_alert read_device'; + +var api = new Active911(oauth_id, oauth_secret, oauth_scope); +var uri = api.getAuthorizationUri(); +console.log('Please go to ' + uri + ' to authenticate.'); + +api.ready(function() { + console.log('OAuth workflow complete'); + +}); |