From aba327e2aaec8ac5b63c84bdb2ece0bf7e84103f Mon Sep 17 00:00:00 2001 From: Harmon Date: Thu, 11 Feb 2021 22:01:37 -0600 Subject: [PATCH] Add stringify_ids and count endpoint parameters for API.friends_ids --- tweepy/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tweepy/api.py b/tweepy/api.py index 69e12fb..09d4c12 100644 --- a/tweepy/api.py +++ b/tweepy/api.py @@ -602,7 +602,7 @@ class API: """ return self.request( 'GET', 'friends/ids', *args, endpoint_parameters=( - 'user_id', 'screen_name', 'cursor' + 'user_id', 'screen_name', 'cursor', 'stringify_ids', 'count' ), **kwargs ) -- 2.25.1