diff --git a/main/mashape/http/AuthUtil.php b/main/mashape/http/AuthUtil.php index a18358b..58f79f4 100755 --- a/main/mashape/http/AuthUtil.php +++ b/main/mashape/http/AuthUtil.php @@ -30,7 +30,7 @@ class AuthUtil { $header = ""; if (!($publicKey == null || $privateKey == null)) { $hash = hash_hmac("sha1", $publicKey, $privateKey); - $header = "Proxy-Authorization: " . base64_encode($publicKey . ":" . $hash) . "\r\n"; + $header = "X-Mashape-Authorization: " . base64_encode($publicKey . ":" . $hash) . "\r\n"; } return $header; }