fix(plugin): parameter convert failed (#274)

This commit is contained in:
mrh997
2025-07-29 22:35:59 +08:00
committed by GitHub
parent f589bb94bb
commit 2ed2a60479

View File

@@ -250,7 +250,7 @@ func (p *PluginApplicationService) RegisterPluginMeta(ctx context.Context, req *
if req.GetLocation() == common.AuthorizationServiceLocation_Query { if req.GetLocation() == common.AuthorizationServiceLocation_Query {
loc = model.ParamInQuery loc = model.ParamInQuery
} else if req.GetLocation() == common.AuthorizationServiceLocation_Header { } else if req.GetLocation() == common.AuthorizationServiceLocation_Header {
loc = model.ParamInPath loc = model.ParamInHeader
} else { } else {
return nil, fmt.Errorf("invalid location '%s'", req.GetLocation()) return nil, fmt.Errorf("invalid location '%s'", req.GetLocation())
} }