public function Twitter::account_update_profile in Twitter 7.5
Same name and namespace in other branches
- 6.5 twitter.lib.php \Twitter::account_update_profile()
- 7.6 twitter.lib.php \Twitter::account_update_profile()
Sets values that users are able to set under the "Account" tab of their settings page.
Parameters
array $params: An array of parameters.
See also
https://dev.twitter.com/docs/api/1.1/post/account/update_profile
File
- ./
twitter.lib.php, line 965 - Integration layer to communicate with the Twitter REST API 1.1. https://dev.twitter.com/docs/api/1.1
Class
- Primary Twitter API implementation class
Code
public function account_update_profile($params = array()) {
return $this
->call('account/update_profile', $params, 'POST');
}