public function Twitter::account_remove_profile_banner in Twitter 7.5
Same name and namespace in other branches
- 6.5 twitter.lib.php \Twitter::account_remove_profile_banner()
- 7.6 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 1213 - 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_remove_profile_banner() {
return $this
->call('account/remove_profile_banner', array(), 'POST');
}