[Error: Failed to createSession. Error: An authentication error
occurred: (403) {"code":-1,"message":"Expired token"}]
I was able to create a session just fine on my localhost server, but when I put it in production - which has https - the error occurs.
I am using tokbox with Meteor framework and wraping the function inside a method:
const opentok = new OpenTok(Meteor.settings.public.opentok.apiKey, Meteor.settings.public.opentok.apiSecret);
let createSessionSync = Meteor.wrapAsync(opentok.createSession, opentok);
reboot the server seem to work but i just don't know why create session is related to token error since i haven't even use the token yet