From: Hypolite Petovan Date: Fri, 13 Dec 2019 16:43:45 +0000 (-0500) Subject: Add relationship filter to api_friends_ids and api_followers_ids X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c9c30e4a236f74d0f5217abf8212905178570c2d;p=friendica.git Add relationship filter to api_friends_ids and api_followers_ids --- diff --git a/include/api.php b/include/api.php index 20c5d2264f..5329e0b1f3 100644 --- a/include/api.php +++ b/include/api.php @@ -3657,11 +3657,14 @@ function api_ff_ids($type, int $rel) * @return array|string * @throws BadRequestException * @throws ForbiddenException + * @throws ImagickException + * @throws InternalServerErrorException + * @throws UnauthorizedException * @see https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference/get-friends-ids */ function api_friends_ids($type) { - return api_ff_ids($type); + return api_ff_ids($type, Contact::SHARING); } /** @@ -3672,11 +3675,14 @@ function api_friends_ids($type) * @return array|string * @throws BadRequestException * @throws ForbiddenException + * @throws ImagickException + * @throws InternalServerErrorException + * @throws UnauthorizedException * @see https://developer.twitter.com/en/docs/accounts-and-users/follow-search-get-users/api-reference/get-followers-ids */ function api_followers_ids($type) { - return api_ff_ids($type); + return api_ff_ids($type, Contact::FOLLOWER); } /// @TODO move to top of file or somewhere better