We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In our plugin implementation we need get cookies from request, we can get cookie from header by
request.Header().Values("Cookie")
after that we need to parse the string to cookie structure, however it is not convenient and effective when we have many plugins have to use cookie.
So how about consider to add and implement cookie method in Request interface? like net/http/request.go
Cookies(filter string) []*Cookie
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Issue description
In our plugin implementation we need get cookies from request, we can get cookie from header by
after that we need to parse the string to cookie structure, however it is not convenient and effective when we have many plugins have to use cookie.
So how about consider to add and implement cookie method in Request interface? like net/http/request.go
Environment
The text was updated successfully, but these errors were encountered: