PHP-OAuth2
PHP-OAuth2 copied to clipboard
Light PHP wrapper for the OAuth 2.0 protocol (based on OAuth 2.0 Authorization Protocol draft-ietf-oauth-v2-15)
Hi I am using the snippet code below for POST an new event, but failed with 400 Error. just wondering if I missed something or can you please provide me...
I would like to use this library to let people connect to my website with their Github account. Which GrantType do I use or create ?
I dont know if this helps, but without adding this options in [#L407](https://github.com/adoy/PHP-OAuth2/blob/master/src/OAuth2/Client.php#L407) will throwed "_SSL routines:SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure' in /OAuth2/Client.php:473_" ``` php $curl_options = array( //CURLOPT_SSLVERSION => 3,...
I have made setup of php oauth2. But when I try redirect to the auth_url ( got from getAuthenticationUrl() ) , It redirect to the login page of wordpress site...
I'm seeking to access Nimble (CRM)'s API which is a pretty standard OAuth2 process as far as I can tell. When I request the Authorisation that works fine and I...
The library appears to explicitly disable curl's SSL peer/host checks when a certificate file is not provided in executeRequest: ``` // https handling if (!empty($this->certificate_file)) { curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true); curl_setopt($ch,...
Replaced parse_str($response['result'], $info); with $info = $response['result']; in README authorization example. parse_str($response['result'], $info); causes a PHP warning that parse_str() expects an array, but $response['result'] is a string.
It seems that in some cases when the query is POST, you want to have the access_token to be passed in the URI and you want the parameters to be...
Please update release tag so that composer can get the latest version. I have to do adoy/oauth2: dev/master right now