Feature Support for PubNub PHP SDK
Access Manager
PubNub provides builtin enterprise-grade security with fine-grained access control to all of your PubNub applications with Access Manager, Message Layer encryption with AES256, and Transport Layer Security with TLS and SSL.
Name | Description |
---|---|
Grant | This function establishes access permissions for Access Manager by setting the read or write attributes. |
Root permissions for the Access Manager | When you init with secret key, you get root permissions for the Access Manager. With this feature you don't have to grant access to your servers to access channel data. The servers get all access on all channels. |
Channel Groups
Channel Groups allows PubNub developers to bundle thousands of channels into a group that can be identified by name. These Channel Groups can then be subscribed to, receiving data from the many backend-channels the channel group contains.
Name | Description |
---|---|
Add Channels | Add channel to a channel group. |
Remove Channels | Remove channel from channel group. |
Remove Channels Groups | Remove channel groups. |
List Channels In Channel Group | List all channels of a channel group. |
Presence
PubNub's Channel Presence empowers your applications to Track online and offline status of users and devices in realtime.
Name | Description |
---|---|
Here Now | Obtain information about the current state of a channel including a list of unique user IDs currently subscribed to the channel and the total occupancy count of the channel. |
Where Now | Obtain information about the current list of a channels to which a UUID is subscribed. |
Set State | Set state is used to set key/value pairs specific to a subscriber UUID. |
Get State | Get state is used to get the key/value pairs specific to a subscriber UUID. |
Publish
Publish a message on a channel.
Name | Description |
---|---|
Store Flag | Ability to skip message from storage. |
Publish RAW JSON | Publish JSON as is. |
Publish with Metadata | Publish extra meta with the request used for Message Filtering. |
Publish using GET | Publish using HTTP GET. |
Fire | Fire method used for publishing. When a message is sent using fire, it will not be replicated to other Points of Presence, it will remain at the originating Point of Presence, and is not eligible for archiving via the Message Persistence feature. |
Mobile Push Notifications
Mobile Push Notifications feature enables developers to bridge native PubNub publishing with third-party push notification services including Google Android Firebase Cloud Messaging (FCM) formerly known as Google Cloud Messaging (GCM) and Apple iOS Apple Push Notification Service (APNs).
Name | Description |
---|---|
Add Device To Channels | Enables push notifications on provided set of channels. |
Remove Device | Disable push notifications from all channels which is registered. |
List Channels From Device | List all channels on which push notification has been enabled. |
Remove Device From Channels | Disable push notifications on provided set of channels. |
APNS Support | SDK has support to send notifications using APNS. |
APNS2 Support | SDK has support to send notifications using APNS2. |
FCM Support | SDK has support to send notifications using FCM. |
Message Persistence
PubNub's Message Persistence feature enables developers to store messages as they are published, and retrieve them at a later time.
Name | Description |
---|---|
Reverse | Traverse the timeline in reverse starting with the oldest message first. |
Include Timetoken | Whether event dates time tokens should be included in response or not. |
Start End | Time token delimiting the start/end of time slice (exclusive) to pull messages from. |
Count of Messages on Channels | The API is a history based API that simply does a mostly normal history operation but instead of returning the messages in a channel it returns the count of messages. Without actually calling history on those channels this API gives you the ability to say if there are messages in the chat channel you can go look at further. |
Count | Specifies the number of historical messages to return. |
Time
Return a 17 digit precision Unix epoch from the server.
Name | Description |
---|---|
Time | This function will return a 17 digit precision Unix epoch from the server. |
Subscribe
This function causes the client to create an open TCP socket to the PubNub Real-Time Network and begin listening for messages on a specified channel.
Name | Description |
---|---|
Subscribe to channels | Ability to subscribe to channels. |
Subscribe to channel groups | Ability to subscribe to channel groups. |
Subscribe to presence channels | Ability to subscribe to presence channels. |
Subscribe to presence channel groups | Ability to subscribe to presence channel groups. |
Subscribe with timetoken | Subscribe with timetoken. |
Wildcard subscribe | Wildcard subscribes allow the client to subscribe to multiple channels using wildcard. E.g., if you subscribe to a.* you will get all messages for a.b, a.c, a.x. The wildcarded * portion refers to any portion of the channel string name after the dot (.). |
Publisher UUID | Has the publisher UUID of the published message. |