How to change auth0 client library version in rules??
You can check Can I require? - Search which node modules you can use in webtask.io for the libraries and versions available.
At this time, the latest version available is 2.13.0
. To use it, you’d do:
function(user, context, callback) {
var auth0 = require('auth0@2.13.0');
[...]
}
Take a look at Access a newer version of the library for more code samples on using this.
This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.