createReblog abstract method

Future<MastodonResponse<Status>> createReblog({
  1. required String statusId,
})

Re-share a status on your own profile.

Parameters

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

Endpoint Url

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

Authentication Methods

  • OAuth 2.0

Required Scopes

  • write:statuses

Reference

Implementation

Future<MastodonResponse<Status>> createReblog({
  required String statusId,
});