Skip to content

Commit b6654fd

Browse files
authored
Authorization header lower case
1 parent 10bc0e9 commit b6654fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/ROOT/pages/authentication-and-authorization/configuration.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const server = new ApolloServer({
2020
const { url } = await startStandaloneServer(server, {
2121
listen: { port: 4000 },
2222
context: async ({ req }) => ({
23-
token: req.headers.Authorization,
23+
token: req.headers.authorization,
2424
}),
2525
});
2626
----

0 commit comments

Comments
 (0)