From 0191cc569d2c6eae1415d948959052044109ea2d Mon Sep 17 00:00:00 2001 From: thefosk Date: Mon, 15 Oct 2012 16:38:53 -0700 Subject: [PATCH] fixed auth bug --- main/mashape/http/HttpClient.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/mashape/http/HttpClient.php b/main/mashape/http/HttpClient.php index 319a1aa..6a3e004 100755 --- a/main/mashape/http/HttpClient.php +++ b/main/mashape/http/HttpClient.php @@ -35,8 +35,8 @@ require_once(dirname(__FILE__) . "/../authentication/BasicAuthentication.php"); require_once(dirname(__FILE__) . "/../authentication/CustomHeaderAuthentication.php"); require_once(dirname(__FILE__) . "/../authentication/MashapeAuthentication.php"); require_once(dirname(__FILE__) . "/../authentication/QueryAuthentication.php"); -require_once(dirname(__FILE__) . "/../authentication/Oauth10aAuthentication.php"); -require_once(dirname(__FILE__) . "/../authentication/Oauth2Authentication.php"); +require_once(dirname(__FILE__) . "/../authentication/OAuth10aAuthentication.php"); +require_once(dirname(__FILE__) . "/../authentication/OAuth2Authentication.php"); class HttpClient {