How to store request token in session

shivamgupta27
Please help me how to store request token in core php, currently every hit asking for new token
  • sujith
    You shouldn't be storing request token in the app. It can be used only once and its validity is for a couple of minutes. Instead, you should store access token.
    You don't have to generate session for every run. Check out more details here.
Sign In or Register to comment.