Parse invalid session token error 1.8.2

前端 未结 1 807
谎友^
谎友^ 2021-01-22 15:46

I am currently getting this error in the terminal of my application when I run it. It was working fine not to long ago but now I am getting an Invalid Session Token error and I\

相关标签:
1条回答
  • 2021-01-22 16:28

    This is clearly stated on the dashboard and in the documentation. If you enable "Require Revocable Sessions", all sessions that use legacy tokens (non revocable) will be invalidated and you will have to login again.

    You have 2 possibilities :

    • Your app is in production and you have users using it with an old version of the SDK (meaning they use old tokens). Then you should disable "Require Revocable Sessions" immediately.
    • You're still developing your app, then leave "Require Revocable Sessions" enabled, do not add the migration code and just re install your app.
    0 讨论(0)
提交回复
热议问题