We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to load the SDK and perform a basic initialization of joola.io on the page:
script(src="http://localhost:8080/joola.io.js?APIToken=apitoken-root")
Generates: Uncaught TypeError: Cannot read property 'token' of undefined Referenced to this line: joolaio.TOKEN = user.token._;
Uncaught TypeError: Cannot read property 'token' of undefined
joolaio.TOKEN = user.token._;
If I try to load the SDK in the following way (defining the APIToken under the init function instead of the script url), I get the same behavior:
script(src="http://localhost:8080/joola.io.js") joolaio.init({"host": "http://localhost:8080", "APIToken": "apitoken-root"}, function (err, result) { });
The text was updated successfully, but these errors were encountered:
Please npm update and tell me if it works.
npm update
Sorry, something went wrong.
npm update did not work, however running npm install https://github.com/joola/joola.io.sdk/tarball/develop did the trick.
npm install https://github.com/joola/joola.io.sdk/tarball/develop
itayw
No branches or pull requests
I'm trying to load the SDK and perform a basic initialization of joola.io on the page:
Generates:
Uncaught TypeError: Cannot read property 'token' of undefined
Referenced to this line:
joolaio.TOKEN = user.token._;
If I try to load the SDK in the following way (defining the APIToken under the init function instead of the script url), I get the same behavior:
The text was updated successfully, but these errors were encountered: