aboutsummaryrefslogtreecommitdiff
path: root/examples/sample_app.js
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2015-12-14 22:23:28 -0500
committerBen Burwell <ben@benburwell.com>2015-12-14 22:23:28 -0500
commit25ae4e9c132d6e68ddb389808b8f22c8f43b17cd (patch)
treef1647f2fa1df50cb5f06dbe8c23d4aa9deac8132 /examples/sample_app.js
parent05337261ffb4abfb0fbbb9c775ccad0e28645692 (diff)
Begin rewrite for new OAuth API
Diffstat (limited to 'examples/sample_app.js')
-rw-r--r--examples/sample_app.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/examples/sample_app.js b/examples/sample_app.js
deleted file mode 100644
index a08b039..0000000
--- a/examples/sample_app.js
+++ /dev/null
@@ -1,14 +0,0 @@
-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');
-
-});