4

In my Website,

I am building the Yahoo API application.

When ever we access the Yahoo API from our application,

The Yahoo returns the success response to our domain.But my custom session values has expired.

I don't know the reason.

Any help my appreciation.

VijayS91
  • 1,535
  • 23
  • 38
  • Please post some code. Maybe you're not saving/loading the session correctly, could be a lot of things. – obsirdian Oct 09 '13 at 14:17

1 Answers1

0

Without seeing any code I would have to speculate that your $_SESSION['?'] is either being unset:

unset($_SESSION['?']);

or is being destroyed:

session_destroy();

somewhere in your application. Check to see that you are not doing these things in your application.

AJames
  • 64
  • 3