forked from GNUsocial/gnu-social
Output a log message when issuing a request token
This commit is contained in:
parent
baa8ae778a
commit
a77bc11326
@ -100,6 +100,16 @@ class ApiOauthRequestTokenAction extends ApiOauthAction
|
||||
// check signature and issue a new request token
|
||||
$token = $server->fetch_request_token($req);
|
||||
|
||||
common_log(
|
||||
LOG_INFO,
|
||||
sprintf(
|
||||
"API OAuth - Issued request token %s for consumer %s with oauth_callback %s",
|
||||
$token->key,
|
||||
$req->get_parameter('oauth_consumer_key'),
|
||||
"'" . $req->get_parameter('oauth_callback') ."'"
|
||||
)
|
||||
);
|
||||
|
||||
// return token to the client
|
||||
$this->showRequestToken($token);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user