Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Request headers #71

Open
olaven opened this issue May 10, 2020 · 0 comments
Open

Request headers #71

olaven opened this issue May 10, 2020 · 0 comments

Comments

@olaven
Copy link
Contributor

olaven commented May 10, 2020

Hi!

As far as I can tell, there is no way to access request headers.
This makes many tasks difficult, e.g. Bearer-tokens.

I propose a solutions where headers are available on the Context-object,
as a Map or [string, string][]. This could be achieved by accessing req.headers
and attaching it to the context.

To clarify, my proposal leads to the following usage:

get("path/to/resource/:id", ({ headers}) => {

    const value = headers.get("header-key"); 
    return `${value} was found on 'header-key'!`
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant