I was trying to fetch some Stack Overflow users using the following procedure:
- Fetch the users with https://api.stackexchange.com/docs/users-by-ids.
- For each user id, fetch the top tags with https://api.stackexchange.com/docs/top-tags-on-users.
- Programmatically match them using
user_idandaccount_id. - Keep only the records with the
tag_nameI want.
Can this be done in a single step?