TTWrite API: Fetch Following Endpoint
The fetch_following
endpoint allows you to retrieve the list of accounts that a specific user is following. This endpoint supports pagination for managing large lists of followed accounts.
Endpoint URL
//ttwrite.4up.eu/mobile_api/fetch_following
Overview
Use this API to get the list of users that a specific user is following. You can provide the user’s ID along with an optional offset for paginated results.
Parameters
To make a request, include the following parameters:
Required Parameters
user_id
The unique ID of the user whose followed accounts you wish to retrieve.
Optional Parameters
session_id
The access token ID of the requesting user. While optional, it helps authenticate the request. Example:de25cc16eb00960f076...
.offset
The ID of the last user retrieved in the previous request. Use this for pagination.
Example Request
Here’s an example request to fetch the list of followed accounts:
httpCopy codeGET //ttwrite.4up.eu/mobile_api/fetch_following?user_id=12345&offset=67890&session_id=de25cc16eb00960f076...
Notes
- Pagination: Use the
offset
parameter for paginated results. - Authentication: While
session_id
is optional, it is recommended for authenticated requests. - User ID: Ensure the correct
user_id
is provided to fetch the desired list.
admin December 8, 2024 access token ID, fetch followed accounts, fetch following API, fetch following example, fetch user following, following endpoint, following list pagination, following offset ID, following pagination API, following retrieval API, paginate following list, session ID optional, TTWrite API guide, TTWrite endpoint, TTWrite following, TTWrite mobile API, user account following, user following API, user ID parameter API, Social Media, TTWrite Comments Off on TTWrite API: Fetch Following Endpoint