From 3e59131386374b949acd01ebc106cb72724fcd73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Rynning-T=C3=B8nnesen?= Date: Fri, 1 Jul 2016 15:25:07 +0200 Subject: [PATCH] Updated README.md --- OAuth2Client.php | 2 -- README.md | 23 ++++++++++++----------- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/OAuth2Client.php b/OAuth2Client.php index a99618b..31232d4 100644 --- a/OAuth2Client.php +++ b/OAuth2Client.php @@ -61,8 +61,6 @@ class OAuth2 { $result = curl_exec($this->create_curl($url, false, $params)); $result_obj = json_decode($result, true); $access_token = $result_obj['access_token']; - $expires_in = $result_obj['expires_in']; - $expires_at = time() + $expires_in; return $access_token; } diff --git a/README.md b/README.md index 87347ef..20ca890 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,21 @@ -# General OAuth2-Client +# General Authorization Code Flow OAuth2-Client + +This client is made for Authorization Code Flow for now. To use this general OAuth2 client-class, include it with ``` - require_once('OAuth2Client.php'); + require_once('OAuth2Client.php'); $oauth2 = new OAuth2([ "client_id" => $client_id, "client_secret" => $client_secret, - "redirect_uri" => $redirect_uri, - "auth" => $auth, + "redirect_uri" => $redirect_uri, + "auth" => $auth, "token" => $token, - "authorization_type" => $authorization_type, - "session" => $session, - "verify" => $verify, - "grant_type" => $grant_type, - "response_type" => $response_type + "authorization_type" => $authorization_type, + "session" => $session, + "verify" => $verify, + "grant_type" => $grant_type, + "response_type" => $response_type ]); ``` @@ -23,7 +25,7 @@ To use this general OAuth2 client-class, include it with ```(string) $auth``` is the full url for authorization ```(string) $token``` is the full token url -Optional - +Optional - ```(string) $authorization_type``` defaults to Bearer ```(boolean) $session``` specifies whether the state is to be saved in _SESSION storage, defaults to false @@ -52,4 +54,3 @@ To get identity ```(string) $user_url``` is the endpoint for fetching info, example: https://auth.dataporten.no/userinfo returns the identity-object as returned from the OAuth2-provider. -