Fix issue with OAuth request parameters being parsed/stored twice when
calling /api/account/verify_credentials.:format
This commit is contained in:
parent
af9f23c2d9
commit
4379027432
@ -66,18 +66,21 @@ class ApiAccountVerifyCredentialsAction extends ApiAuthAction
|
|||||||
{
|
{
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
|
|
||||||
switch ($this->format) {
|
if (!in_array($this->format, array('xml', 'json'))) {
|
||||||
case 'xml':
|
$this->clientError(_('API method not found.'), $code = 404);
|
||||||
case 'json':
|
return;
|
||||||
$args['id'] = $this->auth_user->id;
|
}
|
||||||
$action_obj = new ApiUserShowAction();
|
|
||||||
if ($action_obj->prepare($args)) {
|
$twitter_user = $this->twitterUserArray($this->auth_user->getProfile(), true);
|
||||||
$action_obj->handle($args);
|
|
||||||
}
|
if ($this->format == 'xml') {
|
||||||
break;
|
$this->initDocument('xml');
|
||||||
default:
|
$this->showTwitterXmlUser($twitter_user);
|
||||||
header('Content-Type: text/html; charset=utf-8');
|
$this->endDocument('xml');
|
||||||
print 'Authorized';
|
} elseif ($this->format == 'json') {
|
||||||
|
$this->initDocument('json');
|
||||||
|
$this->showJsonObjects($twitter_user);
|
||||||
|
$this->endDocument('json');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user