Configuration API for Ruby SDK
Complete API reference for building real-time applications on PubNub with the Ruby Software Development Kit (SDK). This page covers configuration, initialization, and event handling with concise, working examples.
Initialization
Installing
To use pubnub ruby gem, you need to install it. You can do it via rubygems command:
1gem install pubnub
Or add it to your Gemfile.
1gem 'pubnub', '~> 6.0.0'
Usage
To use pubnub, require it in your files.
1require 'pubnub'
Description
This function initializes the PubNub Client API context. Call it before using any APIs to establish account-level credentials such as publish_key and subscribe_key.
Method(s)
To Initialize PubNub you can use the following method(s) in the Ruby SDK:
1Pubnub(
2    subscribe_key,
3    publish_key,
4    secret_key,
5    auth_key,
6    ssl,
7    user_id,
8    heartbeat,
9    callback,
10    ttl,
11    open_timeout,
12    read_timeout,
13    idle_timeout,
14    s_open_timeout,
15    s_read_timeout,
| Parameter | Description | 
|---|---|
| subscribe_key*Type: String, Symbol Default: n/a | Your subscribe key. | 
| publish_keyType: String, Symbol Default: n/a | Your publish key, required to publish messages. | 
| secret_keyType: String, Symbol Default: n/a | Your secret key, required for Access Manager. | 
| auth_keyType: String, Symbol Default: n/a | Your auth key. | 
| sslType: Boolean Default: false | If set to true,sslconnection will be used. | 
| user_id*Type: String Default: n/a | User ID to use. You should set a unique user ID to identify the user or the device that connects to PubNub. It's a UTF-8 encoded string of up to 92 alphanumeric characters.If you don't set the user ID, you won't be able to connect to PubNub. | 
| heartbeatType: Integer Default: n/a | That single value serves a two-fold purpose. First of all, it specifies how often the client will send heartbeat signals to the server to confirm its activity on a channel. Secondly, the value defines a timeout period after which the server considers the client inactive, with inactivity beyond this period triggering a "timeout" on the presence channel. Disabled by default. | 
| callbackType: Lambda Default: n/a | That callbackwill be automatically passed to all method calls fired from this client (likepublish,history,subscribe). Will be overwritten by thecallbackpassed to called event. | 
| ttlType: Integer Default: n/a | Default ttlfor grant and revoke. | 
| open_timeoutType: Integer Default: 10 | Timeout for opening connection for non-subscribeevents. The value is in seconds. | 
| read_timeoutType: Integer Default: 10 | Timeout for reading for non-subscribeevents. The value is in seconds. | 
| idle_timeoutType: Integer Default: 10 | Timeout for idle for non-subscribeevents. The value is in seconds. | 
| s_open_timeoutType: Integer Default: 310 | Timeout for opening connection for subscribe. The value is in seconds. | 
| s_read_timeoutType: Integer Default: 310 | Timeout for read for subscribe. The value is in seconds. | 
| s_idle_timeoutType: Integer Default: 310 | Timeout for idle for subscribe. The value is in seconds. | 
| loggerType: Object Default: Logger instance that outputs logs to 'pubnub.log' | Custom loggerinstance.For detailed information about logging options and customization, refer to the Logging document. | 
| originType: String Default: ps.pndsn.com | Custom origin.Add method that allows changing the origin.#origin=(origin)To request a custom domain, contact support and follow the request process. | 
| http_syncType: Boolean Default: false | Method will be executed asynchronouslyand will return future, to get it'svalueyou can usevaluemethod. If set totrue, method will return array of envelopes (even if there's only oneenvelope).For syncmethodsEnvelopeobject will be returned. | 
| crypto_moduleType:  Crypto::CryptoModuleDefault: n/a | The cryptography module used for encryption and decryption of messages. Takes the cipher_keyandrandom_ivparameters as arguments.For detailed encryption configuration and examples, refer to the Encryption API page. | 
| cipher_keyType:  Default: n/a | This way of setting this parameter is deprecated, pass it to crypto_moduleinstead.cipher key, it's used to encrypt and decrypt messages, if set. | 
| random_ivType:  Default: true | This way of setting this parameter is deprecated, pass it to crypto_moduleinstead.truethe initialization vector (IV) is random for all requests (not just for file upload). Whenfalsethe IV is hard-coded for all requests except for file upload. | 
| uuidType:  Default: n/a | This parameter is deprecated, use user_idinstead.UUIDto use. You should set a uniqueUUIDto identify the user or the device that connects to PubNub.If you don't set the UUID, you won't be able to connect to PubNub. | 
Disabling random initialization vector
Disable random initialization vector (IV) only for backward compatibility (< 4.6.0) with existing applications. Never disable random IV on new applications.
crypto_module
crypto_module encrypts and decrypts messages and files. From 5.2.2, you can configure the algorithms it uses.
Each SDK includes two options: legacy 128‑bit encryption and recommended 256‑bit AES‑CBC. For background, see Message Encryption.
For configuration details, implementation examples, and manual encryption methods, see Encryption.
Legacy encryption with 128-bit cipher key entropy
You don't have to change your encryption configuration if you want to keep using the legacy encryption. If you want to use the recommended 256-bit AES-CBC encryption, you must explicitly set that in the PubNub config.
Sample code
Initialize the PubNub client API with encryption
Required User ID
Always set the UserId to uniquely identify the user or device that connects to PubNub. This UserId should be persisted, and should remain unchanged for the lifetime of the user or the device. If you don't set the UserId, you won't be able to connect to PubNub.
Reference code
1require 'pubnub'
2
3
4def main
5  # Configuration for PubNub instance
6  pubnub = Pubnub.new(
7    subscribe_key: ENV.fetch('SUBSCRIBE_KEY', 'demo'),
8    publish_key: ENV.fetch('PUBLISH_KEY', 'demo'),
9    ssl: true,
10    user_id: 'myUniqueUserId',
11    crypto_module: Pubnub::Crypto::CryptoModule.new_aes_cbc("enigma", true)
12  )
13
14  # Example to demonstrate successful configuration
15  puts "PubNub client initialized successfully with user_id: #{pubnub.user_id}"
Returns
It returns the PubNub instance for invoking PubNub APIs like publish(), subscribe(), history(), here_now(), etc.
Other examples
Initialize the client
Required User ID
Always set the UserId to uniquely identify the user or device that connects to PubNub. This UserId should be persisted, and should remain unchanged for the lifetime of the user or the device. If you don't set the UserId, you won't be able to connect to PubNub.
1pubnub = Pubnub.new(
2    publish_key: 'demo',
3    subscribe_key: 'demo',
4    user_id: 'myUniqueUserId'
5)
Initialization for a read-only client
In the case where a client will only read messages and never publish to a channel, you can simply omit the publish_key when initializing the client:
Required User ID
Always set the UserId to uniquely identify the user or device that connects to PubNub. This UserId should be persisted, and should remain unchanged for the lifetime of the user or the device. If you don't set the UserId, you won't be able to connect to PubNub.
1# Initialize for read-only client
2# Note: The following line uses a hash argument. Ensure the key and value
3# are separated by a colon and a space (Ruby keyword argument style):
4# subscribe_key: 'demo'
5pubnub = Pubnub.new(
6    subscribe_key : 'demo'
7)
Use a custom user ID
Set a custom user_id to identify your users.
Required User ID
Always set the UserId to uniquely identify the user or device that connects to PubNub. This UserId should be persisted, and should remain unchanged for the lifetime of the user or the device. If you don't set the UserId, you won't be able to connect to PubNub.
1# initialize
2pubnub = Pubnub.new(
3    publish_key: 'myPublishKey',
4    subscribe_key: 'mySubscribeKey',
5    user_id: 'myUniqueUserId'
6)
Initializing with SSL enabled
This examples demonstrates how to enable PubNub Transport Layer Encryption with SSL. Just initialize the client with ssl set to true. The hard work is done, now the PubNub API takes care of the rest. Just subscribe and publish as usual and you are good to go.
Required User ID
Always set the UserId to uniquely identify the user or device that connects to PubNub. This UserId should be persisted, and should remain unchanged for the lifetime of the user or the device. If you don't set the UserId, you won't be able to connect to PubNub.
1pubnub = Pubnub.new(
2    subscribe_key: :demo,
3    publish_key:   :demo,
4    ssl: true,
5    user_id: 'myUniqueUserId'
6)
Initializing with Access Manager
Requires Access Manager add-on
This method requires that the Access Manager add-on is enabled for your key in the Admin Portal. Read the support page on enabling add-on features on your keys.
Secure your secret_key
Anyone with the secret_key can grant and revoke permissions to your app. Never let your secret key be discovered, and to only exchange it / deliver it securely. Only use the secret_key on secure server-side platforms.
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.
For applications that will administer Access Manager permissions, the API is initialized with the secret_key as in the following example:
Required User ID
Always set the UserId to uniquely identify the user or device that connects to PubNub. This UserId should be persisted, and should remain unchanged for the lifetime of the user or the device. If you don't set the UserId, you won't be able to connect to PubNub.
1pubnub = Pubnub.new(subscribe_key: 'my_subkey', secret_key: 'my_secretkey', user_id: 'myUniqueUserId')
Now that the pubnub object is instantiated the client will be able to access the Access Manager functions. The pubnub object will use the secret_key to sign all Access Manager messages to the PubNub Network.
Event listeners
You can be notified of connectivity status, message and presence notifications via the listeners.
Listeners should be added before calling the method.
Add listeners
1callback = Pubnub::SubscribeCallback.new(
2    message:  ->(_envelope) {}, # this will be fired only for non-presence messages
3    presence: ->(_envelope) {}, # this will be fired only for presence messages
4    signal: ->(_envelope) {}, # Handle signal message
5    status: ->(envelope)  do  # this will be fired for status messages and errors
6    if envelope.status[:error]
7        case envelope.status[:category]
8            when Pubnub::Constants::STATUS_ACCESS_DENIED # :access_denied
9                # Access denied. Double check Access Manager etc.
10            when Pubnub::Constants::STATUS_TIMEOUT # :timeout
11                # Timeout error
12            when Pubnub::Constants::STATUS_NON_JSON_RESPONSE # :non_json_response
13                # Non json response
14            when Pubnub::Constants::STATUS_API_KEY_ERROR # :api_key_error
15                # API key error
Remove listeners
1pubnub.remove_listener(name: 'my_listener')
2# or
3pubnub.remove_listener(callbacks)
Listeners example
1# Init pubnub client
2pubnub_client = Pubnub.new(subscribe_key: 'demo', publish_key: 'demo')
3
4# First callbacks object
5callbacks0 = Pubnub::SubscribeCallback.new(
6  message:  ->(envelope) { puts "C0 MESSAGE: #{envelope.result[:data][:message]}" },
7  presence: ->(envelope) { puts "C0 PRESENCE: #{envelope.result[:data][:message]}" },
8  status:   ->(envelope) { puts "C0 STATUS: #{envelope.result[:data][:message]}" }
9)
10
11# Second callbacks object
12callbacks1 = Pubnub::SubscribeCallback.new(
13  message:  ->(envelope) { puts "C1 MESSAGE: #{envelope.result[:data][:message]}" },
14  presence: ->(envelope) { puts "C1 PRESENCE: #{envelope.result[:data][:message]}" },
15  status:   ->(envelope) { puts "C1 STATUS: #{envelope.result[:data][:message]}" }
Presence to a channel group
This functions subscribes to the presence channel of a channel group.
Method(s)
To do Presence to a Channel Group you can use the following method(s) in Ruby SDK:
Sample code
Subscribe to the presence channel of a channel group
1pubnub = Pubnub.new(
2    subscribe_key: :demo,
3    publish_key: :demo
4)
5
6callback = Pubnub::SubscribeCallback.new(
7    message:  ->(_envelope) {
8    },
9    presence: ->(envelope) {
10        puts "PRESENCE: #{envelope.result[:data]}"
11    },
12    status:   ->(_envelope) {
13    }
14)
15
Authentication key
This function provides the capability to get a user's auth_key.
Method(s)
1auth_key
This method doesn't take any arguments.
Sample code
1pubnub.auth_key
Returns
The current authentication key.