options.customScripts
. Similarly, you can find custom social connections in options.scripts.fetchUserProfile
.
https://{yourTenant}.us8.webtask.io/dummy-extension-url
when you upgrade to Node 12, the URL will be:
https://{yourTenant}.us12.webtask.io/dummy-extension-url
auth0-authorization-extension
rule. Republish this rule from within the Authorization Extension to update the URLs automatically.
Location | Allowed Callback URL for Node 12 | Allowed Logout URL for Node 12 |
---|---|---|
US-1 | https://.us12.webtask.io/auth0-delegated-admin/login | https://.us12.webtask.io/auth0-delegated-admin |
US-3 | https://.us.webtask.run/auth0-delegated-admin/login | https://.us.webtask.run/auth0-delegated-admin |
EU | https://.eu12.webtask.io/auth0-delegated-admin/login | https://.eu12.webtask.io/auth0-delegated-admin |
AU | https://.au12.webtask.io/auth0-delegated-admin/login | https://.au12.webtask.io/auth0-delegated-admin |
JP-1 | https://.jp.webtask.run/auth0-delegated-admin/login | https://.jp.webtask.run/auth0-delegated-admin |
https://{yourTenant}.us12.webtask.io/auth0-delegated-admin/login
https://{yourTenant}.us12.webtask.io/auth0-delegated-admin
Location | Allowed Callback URL |
---|---|
US-1 | https://.us12.webtask.io/auth0-sso-dashboard/admins/login |
US-3 | https://.us.webtask.run/auth0-sso-dashboard/admins/login |
Europe | https://.eu12.webtask.io/auth0-sso-dashboard/admins/login |
Australia | https://.au12.webtask.io/auth0-sso-dashboard/admins/login |
Japan | https://.jp.webtask.run/auth0-sso-dashboard/admins/login |
Location | Allowed Callback URL |
---|---|
US-1 | https://.us12.webtask.io/auth0-sso-dashboard/login |
US-3 | https://.us.webtask.run/auth0-sso-dashboard/login |
Europe | https://.eu12.webtask.io/auth0-sso-dashboard/login |
Australia | https://.au12.webtask.io/auth0-sso-dashboard/login |
Japan | https://.jp.webtask.run/auth0-sso-dashboard/login |
PUBLIC_WT_URL
hidden secret for authorization. This secret depends on the runtime version and does not update automatically.
To update it, you need to save the extension’s settings (no changes are necessary). To do so, after switching the runtime to Node 12
, you need to open the extension’s settings in the extensions dashboard (gear icon), and click Save
. After that, the extensions gallery will update the PUBLIC_WT_URL
secret based on the selected runtime.
If you do not update the PUBLIC_WT_URL
hidden secret, you will receive the following error:
Module name | Old version | New version |
---|---|---|
couchbase | ~2.5.1 | 2.6.10 |
bcrypt | 1.0.3 | 3.0.8 |
var bcrypt = require(‘bcrypt@1.0.3’);
to
var bcrypt = require(‘bcrypt’);
or, if the module must be pinned to a specific version:
var bcrypt = require(‘bcrypt@3.0.8’);