These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
[SOLVED] SSO - Obtaining Character ID - Internal Server error (PHP)
$url = "https://login.eveonline.com/oauth/verify"; $header = 'Authorization: Bearer '.$access_key; // access key i got before without any trouble $ch = curl_init(); curl_setopt_array($ch, array( CURLOPT_URL => $url, CURLOPT_HEADER => $header, CURLOPT_RETURNTRANSFER => true )); $output = curl_exec($ch); $info = curl_getinfo($ch);
$header = 'Authorization: Bearer '.$access_key;
curl_setopt_array($ch, array( CURLOPT_URL => $url, CURLOPT_HTTPHEADER => $header ));
$header = array('Authorization: Bearer '.$access_key, 'Content-Type: application/json');