rejectOAuthAuthorization method
Client -> server: reject an OAuth token request in response to a prior inbound request.
Implementation
Future<void> rejectOAuthAuthorization({required String requestId, required String error}) async {
final payload = {"request_id": requestId, "error": error};
await room.sendRequest("secrets.provide_oauth_authorization", payload);
}