diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-12-13 15:35:45 -0800 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-12-13 15:35:45 -0800 |
commit | bb0e4044bf08bbac9d73a3e3b75d74c33dcacd7f (patch) | |
tree | 1c6292b26b08bb86ef36cc258cd617197f5844a8 /include/api.php | |
parent | 395268da22bf5ec773de7fdc42a338a9cbe87d40 (diff) | |
download | volse-hubzilla-bb0e4044bf08bbac9d73a3e3b75d74c33dcacd7f.tar.gz volse-hubzilla-bb0e4044bf08bbac9d73a3e3b75d74c33dcacd7f.tar.bz2 volse-hubzilla-bb0e4044bf08bbac9d73a3e3b75d74c33dcacd7f.zip |
remove the unqualified "OAuth" namespace from the project. We need to reference either OAuth1 or OAuth2.
Diffstat (limited to 'include/api.php')
-rw-r--r-- | include/api.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/api.php b/include/api.php index fd6883f44..9c31f994f 100644 --- a/include/api.php +++ b/include/api.php @@ -2311,12 +2311,12 @@ require_once('include/api_auth.php'); function api_oauth_request_token(&$a, $type){ try{ $oauth = new ZotOAuth1(); - $req = OAuthRequest::from_request(); + $req = OAuth1Request::from_request(); logger('Req: ' . var_export($req,true),LOGGER_DATA); $r = $oauth->fetch_request_token($req); }catch(Exception $e){ logger('oauth_exception: ' . print_r($e->getMessage(),true)); - echo "error=". OAuthUtil::urlencode_rfc3986($e->getMessage()); + echo "error=". OAuth1Util::urlencode_rfc3986($e->getMessage()); killme(); } echo $r; @@ -2326,10 +2326,10 @@ require_once('include/api_auth.php'); function api_oauth_access_token(&$a, $type){ try{ $oauth = new ZotOAuth1(); - $req = OAuthRequest::from_request(); + $req = OAuth1Request::from_request(); $r = $oauth->fetch_access_token($req); }catch(Exception $e){ - echo "error=". OAuthUtil::urlencode_rfc3986($e->getMessage()); killme(); + echo "error=". OAuth1Util::urlencode_rfc3986($e->getMessage()); killme(); } echo $r; killme(); |