You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The request from origin 'http://localhost:5245' has been blocked by CORS policy: Request header field grpc-accept-encoding is not allowed by Access-Control-Allow-Headers in preflight response.
Expected Behavior
The header could be overwritten by json, cors plugin or even the upstream api.
Operating system (run uname -a):
Linux 49c5eb4d90cd 5.15.49-linuxkit-pr change: added doc of how to load plugin. #1 SMP PREEMPT Thu May 25 07:27:39 UTC 2023 aarch64 GNU/Linux
OpenResty / Nginx version (run openresty -V or nginx -V):
nginx version: openresty/1.21.4.1
built by gcc 10.2.1 20210110 (Debian 10.2.1-6)
built with OpenSSL 1.1.1s 1 Nov 2022
TLS SNI support enabled
etcd version, if relevant (run curl http://127.0.0.1:9090/v1/server_info):
APISIX Dashboard version, if relevant:
Plugin runner version, for issues related to plugin runners: grpc-web
LuaRocks version, for installation issues (run luarocks --version):
Current Behavior
The Access-Control-Allow-Headers is hard coded, which causes cors issue when client needs extra headers.
https://github.com/apache/apisix/blob/master/apisix/plugins/grpc-web.lua
The request from origin 'http://localhost:5245' has been blocked by CORS policy: Request header field grpc-accept-encoding is not allowed by Access-Control-Allow-Headers in preflight response.
Expected Behavior
The header could be overwritten by json, cors plugin or even the upstream api.
the easy way is by json, like this:
{
"uri": "/*",
"name": "grpcweb",
"plugins": {
"cors": {},
"grpc-web": {
"Access-Control-Allow-Headers": "grpc-accept-encoding"
}
},
"upstream_id": "479432631159620291",
"status": 1
}
Error Logs
Steps to Reproduce
{ "uri": "/*", "name": "grpcweb", "plugins": { "cors": {}, "grpc-web": {} }, "upstream_id": "479432631159620291", "status": 1 }Environment
apisix version): 3.5.0uname -a):Linux 49c5eb4d90cd 5.15.49-linuxkit-pr change: added doc of how to load plugin. #1 SMP PREEMPT Thu May 25 07:27:39 UTC 2023 aarch64 GNU/Linux
openresty -Vornginx -V):nginx version: openresty/1.21.4.1
built by gcc 10.2.1 20210110 (Debian 10.2.1-6)
built with OpenSSL 1.1.1s 1 Nov 2022
TLS SNI support enabled
curl http://127.0.0.1:9090/v1/server_info):luarocks --version):