I have written a PHP script that auhtenticates me and send back an URL with a ticket : www.example.com/login?ticket=xxxx
When I enter this URL in the navigator, I does work perfectly. When doing this, checking the sent HTTP Header confirms that no POST variables are required, no cookie is sent.
When sending exactly the same HTTP header through CURL, I keep getting a 500 error with this description :
--cas:authenticationFailure code='INVALID_TICKET'--
However the ticket itself cant be invalid while it perfectly works in a navigator.
The configuration of CURL is the following :
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION, false);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_COOKIESESSION, 0);
curl_setopt ($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.64 Safari/537.11');
Thanks in advance for helping on this.