3
I’m doing an integration with Facebook Login. When the user clicks to log in using Facebook and accepts the application he is redirected to a method that creates a SESSION and redirects.
The problem is that the data of this SESSION is lost when I try to recover them on the other link.
I created a test method where it simply records a Session and in another controller I recover this SESSION in an expected way.
For this reason I started to suspect that the problem may be in the type of data that comes along with the URL that Facebook redirects to my application.
In all locations of my application I am using the $components = array('Session')
.
How to solve this problem?