The Pavlok module makes it easy to play with your Pavlok through a Node enabled environment (local mode), and also to run simple Express web apps integrated with Pavlok (server mode).
Using this module requires permission to listen on one of your computer's ports (local mode only) or permission to run a server (server mode only) and a client ID/client secret. See here and login with your Pavlok account to get one. You'll need to choose a callback URL of "http://localhost:3000/auth/pavlok/result" for local mode (or some variation of that with a different port), though custom callback URLs are supported (and required!) for server mode.
npm install --save pavlok-beta-api-login
var pavlok = require('pavlok-beta-api-login');
//This must be done before the server starts listening!
pavlok.init("clientId",
"clientSecret", {
"verbose": true,
"app" : app, //Express server
"message": "Hello from the server example!", //Default message for all stimuli
"callbackUrl": "http://www.myserver.com/pavlok/result",
"callbackUrlPath": "/pavlok/result",
"successUrl": "/success", //Where to redirect when the token has been saved to session
"errorUrl": "/error" //Where to redirect when the token couldn't be gotten/saved
});
app.get("/auth", function(req, res){ //
pavlok.auth(req, res);
});
pavlok.init("clientId",
"clientSecret", {
"port": 3000 //Port to run the auth token accepting server on
});
pavlok.login(function(result, code){
if(result){
console.log("Code is " + code);
}
});
See the full documentation and examples for full documentation and a walkthrough.
Though simliar, older versions of the module use slightly different syntax.
All the stimuli messages (zap
, beep
, etc.) now take their arguments in a
single object with named parameters instead of the old ordered argument list.
Versions before 2 also didn't support server mode of the pattern
option.
Licensed under the ISC license.