PHP-OAuth2 icon indicating copy to clipboard operation
PHP-OAuth2 copied to clipboard

Updated README example because it was causing a PHP warning

Open itsmequinn opened this issue 12 years ago • 0 comments

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.

itsmequinn avatar Sep 08 '12 23:09 itsmequinn