Message Actions API for C# 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.
Request execution
Use try
/catch
when working with the C# SDK.
If a request has invalid parameters (for example, a missing required field), the SDK throws an exception. If the request reaches the server but fails (server error or network issue), the error details are available in the returned status
.
try
{
PNResult<PNPublishResult> publishResponse = await pubnub.Publish()
.Message("Why do Java developers wear glasses? Because they can't C#.")
.Channel("my_channel")
.ExecuteAsync();
PNStatus status = publishResponse.Status;
Console.WriteLine("Server status code : " + status.StatusCode.ToString());
}
catch (Exception ex)
{
Console.WriteLine($"Request can't be executed due to error: {ex.Message}");
}
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 C# method:
pubnub.AddMessageAction()
.Channel(string)
.MessageTimetoken(long)
.Action(PNMessageAction)
Parameter | Description |
---|---|
Channel *Type: string | Channel name to add the message action to. |
MessageTimetoken *Type: long | Timetoken of the target message. |
Action *Type: PNMessageAction | Message action payload. |
PNMessageAction
Parameter | Description |
---|---|
Type *Type: string | Message action type. |
Value *Type: string | Message action value. |
Sample code
Reference code
Returns
{
"MessageTimetoken":15610547826969050,
"ActionTimetoken":15610547826970050,
"Action":{
"type":"reaction",
"value":"smiley_face"
},
"Uuid":"user-456"
}
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 C# method:
pubnub.RemoveMessageAction()
.Channel(string)
.MessageTimetoken(long)
.ActionTimetoken(long)
.Uuid(string)
Parameter | Description |
---|---|
Channel *Type: string | Channel name to remove the message action from. |
MessageTimetoken *Type: long | Timetoken of the target message. |
ActionTimetoken *Type: long | Timetoken of the message action to remove. |
Uuid *Type: string | UUID of the message. |
Sample code
Returns
The RemoveMessageAction()
operation returns no actionable data.
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.
Method(s)
Use this C# method:
pubnub.GetMessageActions()
.Channel(string)
.Start(long)
.End(long)
.Limit(int)
Parameter | Description |
---|---|
Channel *Type: string Default: n/a | Channel name to list message actions for. |
Start Type: long Default: n/a | Message action timetoken for the start of the range (exclusive). |
End Type: long Default: n/a | Message action timetoken for the end of the range (inclusive). |
Limit Type: int Default: 100 | Maximum number of actions to return. Default/Maximum is 100 . |
Sample code
Returns
{
"MessageActions":
[{
"MessageTimetoken":15610547826969050,
"Action":{
"type":"reaction",
"value":"smiley_face"
},
"Uuid":"pn-5903a053-592c-4a1e-8bfd-81d92c962968",
"ActionTimetoken":15717253483027900
}],
"More": {
"Start": 15610547826970050,
"End": 15645905639093361,
"Limit": 2
show all 17 lines