Skip to content

Instantly share code, notes, and snippets.

@yasudacloud
Created June 7, 2023 11:24
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
authorization header
<!doctype html>
<html>
<head>
<script>
window.onload = () => {
const header = {
'x-token': 'Bearer ok'
}
fetch('/bearer.php', {headers: header}).then(async(response) => {
console.log(await response.json())
})
}
</script
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment