Skip to content

Instantly share code, notes, and snippets.

@yasudacloud
Created June 7, 2023 11:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yasudacloud/2ad3485a06842a559c3d26bebc4d6399 to your computer and use it in GitHub Desktop.
Save yasudacloud/2ad3485a06842a559c3d26bebc4d6399 to your computer and use it in GitHub Desktop.
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