From: Evan Prodromou Date: Mon, 2 Jun 2008 20:38:02 +0000 (-0400) Subject: more debug code X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=67264e038ccc9a276b8e940d388585536db10c92;p=quix0rs-gnu-social.git more debug code darcs-hash:20080602203802-84dde-f7f237da7c86fe38fd67629d0599c48929dfa619.gz --- diff --git a/actions/userauthorization.php b/actions/userauthorization.php index 617830e9a6..49f3c1b57d 100644 --- a/actions/userauthorization.php +++ b/actions/userauthorization.php @@ -27,13 +27,16 @@ class UserauthorizationAction extends Action { $this->send_authorization(); } else { try { + common_debug('userauthorization.php - fetching request'); $req = $this->get_request(); if (!$req) { common_server_error(_t('Cannot find request')); } common_debug('userauthorization.php - $req = "'.print_r($req,TRUE).'"'); $server = common_oauth_server(); + common_debug('userauthorization.php - checking request version'); $server->get_version($req); + common_debug('userauthorization.php - getting the consumer'); $consumer = $server->get_consumer($req); common_debug('userauthorization.php - $consumer = "'.print_r($consumer,TRUE).'"'); $token = $server->get_token($req, $consumer, "request");