PHP-OAuth2
PHP-OAuth2 copied to clipboard
Updated README example because it was causing a PHP warning
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.