Open PhilippeDunbar opened 9 years ago
Not sure where to submit a bug report for your website's examples, so im submitting here
url: https://oauth.io/getting-started?php#ii-using-the-php-sdk-auth-the-user
first php code block reads:
$request_object = $oauth->auth('the_provider', array( 'code': $code ));
however php array key value pairs are separated with "=>" and javascript is separated with ":" so it should read
$request_object = $oauth->auth('the_provider', array( 'code' => $code ));
(the same example is in dashboard>try auth)
test for life - is this maintained?
Not sure where to submit a bug report for your website's examples, so im submitting here
url: https://oauth.io/getting-started?php#ii-using-the-php-sdk-auth-the-user
first php code block reads:
however php array key value pairs are separated with "=>" and javascript is separated with ":" so it should read
(the same example is in dashboard>try auth)