getServiceAuth method
Implementation
Future<core.XRPCResponse<ServiceAuthToken>> getServiceAuth({
required String aud,
int? exp,
core.NSID? lxm,
Map<String, String>? headers,
}) async =>
await _ctx.get(
ns.comAtprotoServerGetServiceAuth,
headers: headers,
parameters: {
'aud': aud,
'exp': exp,
'lxm': lxm.toString(),
},
to: ServiceAuthToken.fromJson,
);