diff --git a/routers/authz_filter.go b/routers/authz_filter.go index 1456987c..2634b2c4 100644 --- a/routers/authz_filter.go +++ b/routers/authz_filter.go @@ -125,7 +125,11 @@ func AuthzFilter(ctx *context.Context) { subOwner, subName := getSubject(ctx) method := ctx.Request.Method urlPath := getUrlPath(ctx.Request.URL.Path) - objOwner, objName := getObject(ctx) + + objOwner, objName := "", "" + if urlPath != "/api/get-app-login" { + objOwner, objName = getObject(ctx) + } if strings.HasPrefix(urlPath, "/api/notify-payment") { urlPath = "/api/notify-payment"