Statistics Token
This token represents the statistics of reactions on an object (post, comment, etc.)
The issuer (iss) of the token must be the audience (aud) of the parent token (p). A statistics token must not contain an audience (aud) field. The token must contain a parent (p) field which points to the parent object the statistics are referring to. The statistics token must contain a content (c) field which is a JSON object in the following format:
Field | Value | Description |
---|---|---|
c | number | The number of comments (optional) |
r | number | The number of reactions (optional) |
For other constraints see the Action Tokens.
Database key
The database key for a reaction token is [iss, t, p]
Example
User @someotheruser.cloudillo.net also likes the post:
Field | Value |
---|---|
iss | somegroup.cloudillo.net |
iat | 2024-04-13T00:01:10.000Z |
k | 20240301 |
t | STAT |
p | NAado5PS4j5+abYtRpBELU0e5OQ+zGf/tuuWvUwQ6PA= |
c | { “c”: 1, “r”: 2 } |