Skip to content

Instantly share code, notes, and snippets.

@rahatarmanahmed
Forked from randallknutson/gist:58da47fad0035de19a28
Last active September 17, 2015 23:01
Show Gist options
  • Save rahatarmanahmed/bc66c7f736dacb3ac442 to your computer and use it in GitHub Desktop.
Save rahatarmanahmed/bc66c7f736dacb3ac442 to your computer and use it in GitHub Desktop.
Authentication Example.
var request = require('request');
request.post(
'https://formio.form.io/app/api/user/login/submission',
{
data: {
'user.email': email,
'user.password': password
}
},
function (error, response, body) {
if (!error && response.statusCode == 200) {
token = res.headers['x-jwt-token'];
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment