lookupListTimeline abstract method
View statuses in the given list timeline.
Parameters
-
listId
: Local ID of the List in the database. -
maxStatusId
: Return results older than ID. -
minStatusId
: Return results immediately newer than ID. -
sinceStatusId
: Return results newer than ID. -
limit
: Maximum number of results to return. Defaults to 20. Max 40.
Endpoint Url
- GET /api/v1/timelines/list/:list_id HTTP/1.1
Authentication Methods
- OAuth 2.0
Required Scopes
- read:statuses (if the instance has disabled public preview)
Reference
Implementation
Future<MastodonResponse<List<Status>>> lookupListTimeline({
required String listId,
String? maxStatusId,
String? minStatusId,
String? sinceStatusId,
int? limit,
});