I'm doing an integration with Facebook Login. When the user clicks to log in using Facebook and accepts the application it is redirected to a method that creates a SESSION and redirects.
The problem is that the data in this SESSION gets lost when I try to retrieve it in the other link.
I've created a test method where it simply writes a session and another controller I retrieve this SESSION in a expected way.
For this reason I started to suspect that the problem might be in the type of data that comes along with the URL that Facebook redirects to my application.
In all places of my application I'm using $components = array('Session')
.
How do I solve this problem?