example restaurant review app on atproto
at main 316 B view raw
1export async function resolveMiniDoc(handle: string) { 2 const response = await fetch( 3 `https://slingshot.microcosm.blue/xrpc/com.bad-example.identity.resolveMiniDoc?identifier=${handle}`, 4 ); 5 const data = (await response.json()) as { pds: string; did: string }; 6 7 return { 8 pds: data.pds, 9 did: data.did, 10 }; 11}