getServiceAuth method
Get a signed token on behalf of the requesting DID for the requested service.
Implementation
Future<XRPCResponse<ServerGetServiceAuthOutput>> getServiceAuth({
required String aud,
int? exp,
String? lxm,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await comAtprotoServerGetServiceAuth(
aud: aud,
exp: exp,
lxm: lxm,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);