rp
06/08/2022, 11:13 AMNejitha Sunny
06/08/2022, 11:14 AMNejitha Sunny
06/08/2022, 11:18 AMrp
06/08/2022, 11:29 AMPitchAsh
06/08/2022, 4:19 PMIaS1506
06/08/2022, 4:36 PMrp
06/08/2022, 4:38 PMrp
06/08/2022, 4:40 PMCaptainPhoton
06/08/2022, 5:34 PMfunk101
06/09/2022, 6:06 AMImpecorator
06/09/2022, 9:37 AMavinashkumar
06/09/2022, 12:14 PMavinashkumar
06/09/2022, 12:14 PMrp
06/09/2022, 12:27 PMshorthair_[]
06/09/2022, 12:28 PMshorthair_[]
06/09/2022, 12:28 PMshorthair_[]
06/09/2022, 12:29 PMshorthair_[]
06/09/2022, 12:30 PMfunction loginHandler(){
if (email == '' || password == ''){
console.log('Cant upload without variables')
} else {
fetch("http://127.0.0.1:8000/auth/signin", {
method: 'POST',
headers:{"Content-Type":"application/json"},
body:JSON.stringify( {
"formFields" : [
{
"id" : "email",
"value" : {email}
},
{
"id": "password",
"value": {password}
}
]
}
)})
.then(res => {
if (res.ok){
console.log('Signed In!')
} else {
console.log("Couldn't Sign In :(")
}
}).catch(console.log('Something is off'));
console.log('logging in')
console.log(email)
console.log(password)
shorthair_[]
06/09/2022, 12:30 PMEdwinN1337
06/09/2022, 12:45 PM/api/auth
. We have to provide a JWKS endpoint. Is it oké to provide just 1 endpoint?EdwinN1337
06/09/2022, 2:06 PMrp
06/09/2022, 2:09 PMArtyom
06/09/2022, 4:46 PM<ThirdPartyEmailPasswordAuth> ... </ThirdPartyEmailPasswordAuth>
while still requiring auth in some place and not others?PitchAsh
06/09/2022, 4:56 PMwdjzr
06/09/2022, 5:27 PMwdjzr
06/09/2022, 5:27 PMwdjzr
06/09/2022, 5:28 PMwdjzr
06/09/2022, 5:29 PMwdjzr
06/09/2022, 5:30 PMEdwinN1337
06/09/2022, 6:06 PMEdwinN1337
06/09/2022, 6:06 PM