Skip to content

Instantly share code, notes, and snippets.

@DavidInnocent
Last active August 8, 2020 19:27
Show Gist options
  • Save DavidInnocent/19832aeb5fe3f139686623ac94ded86a to your computer and use it in GitHub Desktop.
Save DavidInnocent/19832aeb5fe3f139686623ac94ded86a to your computer and use it in GitHub Desktop.
let url = 'https://api.demo.reja.ai/auth'
let auth_data = {
"email": "hello@intelipro",
"dashboard_id": "interview",
"password": "interview07August"
}
superagent.get(url)
.set('Content-Type', 'application/json')
.send(auth_data)
.then(res => {
console.log(res.body.access_token)
return true;
})
.catch(error => {
console.log(error)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment