Last active
August 8, 2020 19:27
-
-
Save DavidInnocent/19832aeb5fe3f139686623ac94ded86a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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