自定义 JWT 声明规则
JWT 内的自定义声明用于向 Hasura 说明调用方的角色,以便 Hasura 实施必要的授权规则,以确定该调用方的权限。 在 Auth0 控制面板中,导航至规则。
单击+ Create Rule
按钮。 在下一个屏幕中,选择Empty rule
模板。
将规则命名为hasura-jwt-claims
。
将以下脚本添加至规则中。
function (user, context, callback) {const namespace = "https://hasura.io/jwt/claims";context.accessToken[namespace] ={'x-hasura-default-role': 'user',// do some custom logic to decide allowed roles'x-hasura-allowed-roles': ['user'],'x-hasura-user-id': user.user_id};callback(null, user, context);}
Did you find this page helpful?
Start with GraphQL on Hasura for Free
- Build apps and APIs 10x faster
- Built-in authorization and caching
- 8x more performant than hand-rolled APIs