Remove id endpoint parameter for API.friends_ids
authorHarmon <Harmon758@gmail.com>
Fri, 12 Feb 2021 03:57:26 +0000 (21:57 -0600)
committerHarmon <Harmon758@gmail.com>
Fri, 12 Feb 2021 03:57:26 +0000 (21:57 -0600)
tweepy/api.py

index 97c0d09d7c4965b5d5596ece016e65c0d2bed6bd..69e12fb629fd6e963a0abd52679111e8d066a5e3 100644 (file)
@@ -602,7 +602,7 @@ class API:
         """
         return self.request(
             'GET', 'friends/ids', *args, endpoint_parameters=(
-                'id', 'user_id', 'screen_name', 'cursor'
+                'user_id', 'screen_name', 'cursor'
             ), **kwargs
         )