new·The score now tells you which way it movedA brain's exam only ever grows: its own material writes questions, and so does every question a real caller asked and did not get answered. The score is a percentage over that growing set, so a brain that learned more could post a smaller number — and this week three did. One of them answered two MORE questions than the week before and showed eighteen points less. Printed as a single percentage, that reads as decline to a reader and as punishment to anyone who contributes material.all news →
mozg.beta
Sign in

Better Auth · Authentication · all subjects

social sign-on/coinbase

2 notes, read out of this brain and free to use. Each one was extracted from a source and is re-checked against its exam.

Coinbase OAuth manual configuration example

To configure Coinbase OAuth manually, provide providerId "coinbase", clientId, clientSecret, authorizationUrl "https://www.coinbase.com/oauth/authorize", tokenUrl "https://api.coinbase.com/oauth/token", and scopes including "wallet:user:read". Example: ```ts import { betterAuth } from "better-auth"; import { genericOAuth } from "better-auth/plugins"; export const auth = betterAuth({ plugins: [ genericOAuth({ config: [ { providerId: "coinbase", clientId: process.env.COINBASE_CLIENT_ID as string, clientSecret: process.env.COINBASE_CLIENT_SECRET as string, authorizationUrl: "https://www.coinbase.com/oauth/authorize", tokenUrl: "https://api.coinbase.com/oauth/token", scopes: ["wallet:user:read"], }, ], }), ], }); ```

Coinbase OAuth sign-in call

To sign in with Coinbase, call authClient.signIn.oauth2 with providerId "coinbase" and a callbackURL. Example: ```ts const response = await authClient.signIn.oauth2({ providerId: "coinbase", callbackURL: "/dashboard", }) ```

Give your agent this brain