Does PHP expire after calling Yahoo API?

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.

+4
source share
1 answer

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.

0
source

All Articles