Additional information on token management and localStorage would be useful:
- Where does the SDK store tokens for multi-tab use? Are tokens stored in
localStorage or somewhere else?
- If tokens are stored in
localStorage what is the behavior when localStorage is not available? Is there a fallback or is localStorage required?
Examples or description of the supported localStorage values in the following areas would also be useful:
- What is an example of
localStorage value below for client-side browser use?
var sdk = new SDK({
localStorage: whatever,
- What is an example of
localStorage value below for server-side Node.js use? For example, could it be an instance of node-localstorage:
RingCentral.SDK.core.Externals.localStorage = Anything;