From 7472422b3c356944334c4d40780fdf68a719218e Mon Sep 17 00:00:00 2001 From: Arudmin Date: Sat, 21 Jun 2014 13:56:19 +0400 Subject: [PATCH] Update api.py Add allowed params from API reference according to the documentation. --- tweepy/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweepy/api.py b/tweepy/api.py index 49b5219..81c3a95 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -622,7 +622,7 @@ class API(object): path='/account/update_profile_background_image.json', method='POST', payload_type='user', - allowed_param=['tile'], + allowed_param=['tile', 'include_entities', 'skip_status', 'use'], require_auth=True )(self, post_data=post_data, headers=headers) -- 2.25.1