Daniel K.
09/11/2017, 9:05 PMInsufficient Permission
(I have permissions set to require authentication)
I have subscription client initialized like this
const wsClient = new SubscriptionClient(ENDPOINT_SUBSCRIPTIONS, {
reconnect: true,
timeout: 30000,
connectionParams() {
if (authStore.authUser) {
return { authToken: authStore.authUser.token }
}
return null
},
})
However, the function is called once at the start of my app when I don't have token yetagartha
09/11/2017, 9:29 PM