I am creating an PHP application using PHP OAuth API ,
after making api call it redirects back to the client application site and after allowing access from client application site it redirects back to the calling appication.
this happens for every api call which I don't want.
Does I have to store oauth_token and oauth_verifier somewhere?
Is the pin based authorization is the solution?
if yes then how can I set up this?
Manuel Lemos - 2015-11-24 05:57:27 - In reply to message 1 from Sagar Patil
No, by default the class stores authorization in session variables. As long as you are making calls to the API when the user is accessing your pages, session variables are OK. The class takes care of the storage, you do not have to be concerned how it works internally.