You are here

public function Twitter::account_update_profile_colors in Twitter 7.6

Same name and namespace in other branches
  1. 6.5 twitter.lib.php \Twitter::account_update_profile_colors()
  2. 7.5 twitter.lib.php \Twitter::account_update_profile_colors()

Sets one or more hex values that control the color scheme of the authenticating user's profile page on twitter.com.

Parameters

array $params: An array of parameters.

See also

https://dev.twitter.com/docs/api/1.1/post/account/update_profile_colors

File

./twitter.lib.php, line 1037
Integration layer to communicate with the Twitter REST API 1.1. https://dev.twitter.com/docs/api/1.1

Class

Twitter
Primary Twitter API implementation class

Code

public function account_update_profile_colors($params = array()) {
  return $this
    ->call('account_update_profile_colors', $params, 'POST');
}