User permissions are an essential part of any application’s security model. One major use case for compressing and decompressing user permissions is to include the compressed permissions in an authentication token.
When a user login and obtained the access token, you can attach their permissions to the token.
Compressed: 3963n
Decompressed:
{
forms: [1, 2, null, 4],
users: [5, 6, 7, null],
archive: [9, 10, 11, 12],
}
Top comments (0)