Updates the authenticating user's profile image. Docs: https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/post-account-update_profile_image
(self, **params)
| 556 | return self.post('account/update_profile_colors', params=params) |
| 557 | |
| 558 | def update_profile_image(self, **params): # pragma: no cover |
| 559 | """Updates the authenticating user's profile image. |
| 560 | |
| 561 | Docs: |
| 562 | https://developer.twitter.com/en/docs/accounts-and-users/manage-account-settings/api-reference/post-account-update_profile_image |
| 563 | |
| 564 | """ |
| 565 | return self.post('account/update_profile_image', params=params) |
| 566 | |
| 567 | def list_blocks(self, **params): |
| 568 | """Returns a collection of user objects that the authenticating user |
no test coverage detected