我需要对我的API资源授权者应用不同的规则。 我可以创建多个授权者功能,但是一个简单的标记就足以保留一个授权者。
我尝试了这种语法:
functions:
create:
handler: posts.create
events:
- http:
path: posts/create
method: post
authorizer: authorizerFunc
tags:
scope: one
- http:
path: posts/update
method: put
authorizer: authorizerFunc
tags:
scope: two
authorizerFunc:
handler: handler.authorizerFunc
但是我没有得到我的授权者event
/ context
对象中的标签。
我已经看到scope
的{{1}}字段,这与我要寻找的非常接近,但是我只想在我的授权函数中找回它。
您知道我可以用来将自定义变量添加到事件中的字段吗?