You are here

public function Twitter::account_remove_profile_banner in Twitter 7.6

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

Removes the uploaded profile banner for the authenticating user.

See also

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

File

./twitter.lib.php, line 1238
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_remove_profile_banner() {
  return $this
    ->call('account/remove_profile_banner', array(), 'POST');
}