Signin url
Used to login users
axios.post(`${signin_url}`, {
email: "johndoe7@gmail.com",
password: "123456"
},
{
headers: {
"app_secret": `${app_secret}`,
"Content-type": "application/json"
}
}
)
.then((response)=> {
const tokens = response.data;
// application signin logic here
})
.catch((err) => {
console.error(err);
})Last updated