Signup url
Used to create new users
axios.post(`${signup_url}`, {
email: "johndoe7@gmail.com",
password: "123456"
},
{
headers: {
"app_secret": `${app_secret}`,
"Content-type": "application/json"
}
}
)
.then((response)=> {
const tokens = response.data;
// now creates the same user in your own application database by passing in the token
// application login with the sign up tokens
})
.catch((err) => {
console.error(err);
})Last updated