On my website
I am creating a Yahoo API application.
When we access the Yahoo API from our application,
Yahoo returns a success response to our domain. But my user session values have expired.
I do not know the reason.
Any help is appreciated.
Without seeing any code, I would have to assume that your $ _SESSION ['?'] Is either not set:
unset($_SESSION['?']);
or destroyed:
session_destroy();
somewhere in your application. Make sure you do not do this in your application.