diff options
author | Zach Copley <zach@status.net> | 2010-01-11 12:52:56 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-01-24 16:36:02 -0800 |
commit | 11bd98025c1e41921359b634461772d22a1c059f (patch) | |
tree | 9a2a8255fe655bd6500e64c8c213bd32cbc899db /actions/apioauthaccesstoken.php | |
parent | c2337ab47c183ab9758f5db8632ac9cd480a282a (diff) |
Issue a warning when someone tries to exchange an unauthorized or
otherwise bad req token for an access token.
Diffstat (limited to 'actions/apioauthaccesstoken.php')
-rw-r--r-- | actions/apioauthaccesstoken.php | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/actions/apioauthaccesstoken.php b/actions/apioauthaccesstoken.php index 9b99724d0..67359d765 100644 --- a/actions/apioauthaccesstoken.php +++ b/actions/apioauthaccesstoken.php @@ -88,11 +88,10 @@ class ApiOauthAccessTokenAction extends Action if (empty($atok)) { common_debug('couldn\'t get access token.'); - $this->outputError("Badness."); - return; + print "Token exchange failed. Has the request token been authorized?\n"; + } else { + print $atok; } - - print $atok; } function outputError($msg) |