Message Actions API for Go SDK
Use message actions to add or remove metadata on published messages. Common uses include receipts and reactions. Clients subscribe to a channel to receive message action events. Clients can also fetch past message actions from Message Persistence, either on demand or when fetching original messages.
Reactions
"Message Reactions" is a specific application of the Message Actions API for emoji or social reactions.
Message Actions vs. Message Reactions
Message Actions is the flexible, low-level API for adding any metadata to messages (read receipts, delivery confirmations, custom data), while Message Reactions specifically refers to using Message Actions for emoji/social reactions.
In PubNub Core and Chat SDKs, the same underlying Message Actions API is referred to as Message Reactions when used for emoji reactions - it's the same functionality, just different terminology depending on the use case.
Add message action
Requires Message Persistence
Enable Message Persistence for your key in the Admin Portal as described in the support article.
Add an action to a published message. The response includes the added action.
Method(s)
Use this Go method:
1pn.AddMessageAction().
2 Channel(string).
3 MessageTimetoken(string).
4 Action(pubnub.MessageAction).
5 Execute()
| Parameter | Description |
|---|---|
Channel *Type: string | Channel name to add the message action to. |
MessageTimetoken *Type: string | Timetoken of the target message. |
Action *Type: pubnub.MessageAction | Message action payload: ActionType (type) and ActionValue (value). |
Sample code
Reference code
1
Returns
The AddMessageAction() operation returns a PNAddMessageActionsResponse:
| Property Name | Type | Description |
|---|---|---|
Data | PNMessageActionsResponse | See PNMessageActionsResponse. |
PNMessageActionsResponse
| Property Name | Type | Description |
|---|---|---|
ActionType | string | Message action type. |
ActionValue | string | Message action value. |
ActionTimetoken | string | Timetoken when the action was added. |
MessageTimetoken | string | Timetoken of the target message. |
Remove message action
Requires Message Persistence
Enable Message Persistence for your key in the Admin Portal as described in the support article.
Remove a previously added action from a published message. The response is empty.
Method(s)
Use this Go method:
1pn.RemoveMessageAction().
2 Channel(string).
3 MessageTimetoken(string).
4 ActionTimetoken(string).
5 Execute()
| Parameter | Description |
|---|---|
Channel *Type: string | Channel name to remove the message action from. |
MessageTimetoken *Type: string | Timetoken of the target message. |
ActionTimetoken *Type: string | Timetoken of the message action to remove. |
Sample code
1
Returns
The RemoveMessageAction() operation returns a PNRemoveMessageActionsResponse:
| Property Name | Type | Description |
|---|---|---|
Data | interface | Empty object. |
Get message actions
Requires Message Persistence
Enable Message Persistence for your key in the Admin Portal as described in the support article.
Get a list of message actions in a channel. The response sorts actions by the action timetoken in ascending order.
Truncated response
The number of message actions in the response may be truncated when internal limits are hit. If the response is truncated, a more property is returned with additional parameters. Send iterative calls to Message Persistence, adjusting the parameters to fetch more message actions.
How to use the start and end parameters
PubNub retrieves messages by searching backward through time (newest to oldest). Because of this, the parameter names are the reverse of their intuitive meaning:
startis the newer boundary (higher timetoken value) - search begins here, exclusiveendis the older boundary (lower timetoken value) - search stops here, inclusive
When you provide both parameters, start must be a higher timetoken than end.
Results are always returned in oldest-first order.
Method(s)
Use this Go method:
1pn.GetMessageActions().
2 Channel(string).
3 Start(string).
4 End(string).
5 Limit(int).
6 Execute()
| Parameter | Description |
|---|---|
Channel *Type: string | Channel name to list message actions for. |
StartType: string | Newer boundary of the query (exclusive). Must be a higher timetoken value than End when both are provided. |
EndType: string | Older boundary of the query (inclusive). Must be a lower timetoken value than Start when both are provided. |
LimitType: int | Number of actions to return. |
Sample code
1
Returns
The GetMessageActions() operation returns a PNGetMessageActionsResponse:
| Property Name | Type | Description |
|---|---|---|
Data | []PNMessageActionsResponse | See PNMessageActionsResponse. |
More | PNGetMessageActionsMore | See PNGetMessageActionsMore. |
PNGetMessageActionsMore
| Property Name | Type | Description |
|---|---|---|
URL | string | URL of the next set of results. |
Start | string | Start parameter for the next set of results. |
End | string | End parameter for the next set of results. |
Limit | int | Limit for the next set of results. |