diff --git a/lib/OAuth.php b/lib/OAuth.php index 2fa374a..ffe9c6d 100644 --- a/lib/OAuth.php +++ b/lib/OAuth.php @@ -829,6 +829,10 @@ class OAuthUtil { $out[$key] = $value; } } + // The "Authorization" header may get turned into "Auth". + if ($out['Auth']) { + $out['Authorization'] = $out['Auth']; + } } return $out; }