We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13b9b87 commit 80595a9Copy full SHA for 80595a9
PubNubUnity/Assets/Snippets/AccessManager/AccessManagerSample.cs
@@ -19,8 +19,9 @@ static void PubnubInit()
19
//Create configuration
20
PNConfiguration pnConfiguration = new PNConfiguration(new UserId("myUniqueUserId"))
21
{
22
- SubscribeKey = "demo",
23
- PublishKey = "demo"
+ SubscribeKey = "YOUR_SUBSCRIBE_KEY",
+ PublishKey = "YOUR_PUBLISH_KEY",
24
+ SecretKey = "YOUR_SECRET_KEY",
25
};
26
//Create a new PubNub instance
27
Pubnub pubnub = PubnubUnityUtils.NewUnityPubnub(pnConfiguration);
0 commit comments