how to save session data for next login using this sdk?
Opened this issue · 2 comments
kingctan commented
how to save session data for next login using this sdk?
Thanks.
radimbuchtela commented
Hi kingctan,
you can use Storage object from SDK: http://smarttv.mautilus.com/SDK/#!/api/Storage
Storage.set("lastname", "Smith"); // Store value
var lastname = Storage.get("lastname"); // Retrieve value
Regards,
Radim
radimbuchtela commented
Did it help you? If yes, please close this issue.
Thank you.