getJoinLinkPreviews method
Get public information about groups from join links. The output array matches the input codes one-to-one by position (and each view also carries its 'code'). Disabled codes return a disabledJoinLinkPreviewView, and codes that do not map to a previewable link return an invalidJoinLinkPreviewView.
Implementation
Future<XRPCResponse<GroupGetJoinLinkPreviewsOutput>> getJoinLinkPreviews({
required List<String> codes,
String? $service,
Map<String, String>? $headers,
Map<String, String>? $unknown,
}) async => await chatBskyGroupGetJoinLinkPreviews(
codes: codes,
$ctx: ctx,
$service: $service,
$headers: $headers,
$unknown: $unknown,
);