Hi, I’ve built a front sidebar plugin a couple of years ago and I was using the auth_secret to authenticate the users from front to my app, before I was doing something like:
export function getInstallationInformation(callback) {
callback = once(callback);
Front.contextUpdates.subscribe(context => {
callback({authSecret: context.preferences.authSecret});
});
}
Now I’m refactoring the plugin, and I noticed that in the docs it says that the auth_secret is going to be sent in the URL.
Does front still support the the context.preferences ?
Thank you!