lookupStatusContext abstract method

Future<MastodonResponse<StatusContext>> lookupStatusContext({
  1. required String statusId,
})

View statuses above and below this status in the thread.

Parameters

  • statusId: The ID of the Status in the database.

Endpoint Url

  • POST /api/v1/statuses/:id/context HTTP/1.1

Authentication Methods

  • OAuth 2.0

Required Scopes

  • read:statuses

Reference

Implementation

Future<MastodonResponse<StatusContext>> lookupStatusContext({
  required String statusId,
});