main
samerbam 1 year ago
parent a73a806fb2
commit 00c34f6d90

@ -313,7 +313,7 @@
// });
// });
// import { createAuth0Client } from '@auth0/auth0-spa-js';
let jToken = ""
const jToken = ""
function loginAction(e) {
auth0.createAuth0Client({
@ -378,7 +378,7 @@
withCredentials: true,
credentials: 'include',
headers: {
'Authorization': "Bearer " + t,
'Authorization': "Bearer " + jToken,
}
}).then(re => {
re.json().then(jso => {

@ -582,7 +582,8 @@ function sendPrintRequest(action, date, sentence="") {
method: "post",
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json'
'Content-Type': 'application/json',
'Authorization': "Bearer " + jToken
},
//make sure to serialize your JSON body

Loading…
Cancel
Save