我正在使用PHP的CURL函数使用MailGun返回我域中所有未订阅的电子邮件。我尝试了以下代码:
function get_unsubscriptions() {
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_USERPWD, 'api:key-[key removed]');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
curl_setopt($ch, CURLOPT_URL, 'https://api.mailgun.net/v3/[domain removed]/unsubscriptions');
$result = curl_exec($ch);
curl_close($ch);
return $result;
}
但是它只返回以下内容:
Mailgun Magnificent API
我在做什么错了?