pedroP
tRPC3y ago
1 reply
pedro

Vanilla Client Authentication

How to authenticate using the vanilla client? I want to consume this route as the authenticated user, but I couldn't find how to do this. Everything's working fine but this. Couldn't find anything on the docs

export const edgeClient = createTRPCProxyClient<AppRouter>({
  links: [
    httpBatchLink({
      url: `${getBaseUrl()}/api/trpc`,
    }),
  ],
  transformer: SuperJSON,
});


  const introspect = await edgeClient.dataset.introspect.query(
    {
      datasetId: datasourceId,
      workspaceId,
    },
    {
      context: {
        session,
      },
    },
  );
Was this page helpful?