| I've learned this today... (A) As part of this https://mdc-docs.netlify.com/aerogear/latest/mobile-metrics/#setting-up-sdk-metrics (B) You must also do https://mdc-docs.netlify.com/aerogear/latest/mobile-developer-console/#sdk Seems to me like we need a prereq to cater for (B) in (A). Jan Hellar then there will be probably more place like this, e.g. https://mdc-docs.netlify.com/aerogear/latest/identity-management/#setting-up-sdk-idm it says: — const Auth = require('@aerogear/auth').Auth; const authService = new Auth(app.config); const initOptions = { onLoad: "login-required" } ; authService.init(initOptions) .then(() => { // successful init & authentication } ) .catch((err) => { // initialization error } ); — the app object is also created with https://mdc-docs.netlify.com/aerogear/latest/mobile-developer-console/#sdk |