Troubleshooting Vue SDK
How to enable logging
Set logVerbosity to true on initialization.
Note
Always set the UUID to uniquely identify the user or device that connects to PubNub. This UUID should be persisted, and should remain unchanged for the lifetime of the user or the device. If you don't set the UUID, you won't be able to connect to PubNub.
1Vue.use(PubNubVue, {
2 subscribeKey: "mySubscribeKey",
3 publishKey: "myPublishKey",
4 logVerbosity: true,
5 uuid: "myUniqueUUID"
6});
Note
Copy the logs from the console output of the browser as text and submit to support@pubnub.com.