Meteor - Unable To Call LoginWithToken From Meteor Or Accounts
I'm trying to call loginWithToken from Meteor, using the following: Meteor.loginWithToken(secret) Accounts.loginWithToken(secret) but am getting TypeError: Object [object Object]
Solution 1:
This is because loginWithToken can only be called from the client.
Post a Comment for "Meteor - Unable To Call LoginWithToken From Meteor Or Accounts"