projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e80b49a
)
Require id parameter for API.create_favorite
author
Harmon
<Harmon758@gmail.com>
Sat, 13 Feb 2021 20:00:18 +0000
(14:00 -0600)
committer
Harmon
<Harmon758@gmail.com>
Sat, 13 Feb 2021 20:00:18 +0000
(14:00 -0600)
tweepy/api.py
patch
|
blob
|
blame
|
history
diff --git
a/tweepy/api.py
b/tweepy/api.py
index bccff3d03c14990c35fbf19a51b6193b871b39a9..e04576cebaacdb65f61413582603fdb43a909046 100644
(file)
--- a/
tweepy/api.py
+++ b/
tweepy/api.py
@@
-751,11
+751,11
@@
class API:
)
@payload('status')
- def create_favorite(self, *args, **kwargs):
+ def create_favorite(self,
id,
*args, **kwargs):
""" :reference: https://developer.twitter.com/en/docs/tweets/post-and-engage/api-reference/post-favorites-create
"""
return self.request(
- 'POST', 'favorites/create', *args, endpoint_parameters=(
+ 'POST', 'favorites/create',
id,
*args, endpoint_parameters=(
'id',
), **kwargs
)