I am having problems figuring out how to get a list of Lists via cURL. I am able test the API with my APIKey and Token on site https://constantcontact.mashery.com/io-docs, but can't replicate it in my own code: >> $url = "https://api.constantcontact.com/v2/lists?&api_key=". $apiKey; echo "Getting mailing list IDs ... "; $header[] = "Authorization: Bearer $token"; $header[] = 'Content-Type: application/json'; $ch = curl_init(); curl_setopt($ch, CURLOPT_HTTPHEADER,$header); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPGET, true); echo curl_exec($ch); $response = json_decode(curl_exec($ch)); print_r ($response); << The response I am getting is: [{"error_key":"query.param.invalid","error_message":"The query parameter is not supported."}]Array ( [0] => stdClass Object ( [error_key] => query.param.invalid [error_message] => The query parameter is not supported. ) ) Any idea what I am doing wrong, or am missing? Adam
... View more