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/instagram

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.

Instagram OAuth manual configuration example

To configure Instagram OAuth manually, provide providerId "instagram", clientId, clientSecret, authorizationUrl "https://api.instagram.com/oauth/authorize", tokenUrl "https://api.instagram.com/oauth/access_token", and scopes ["user_profile", "user_media"]. Example: ```ts import { betterAuth } from "better-auth"; import { genericOAuth } from "better-auth/plugins"; export const auth = betterAuth({ plugins: [ genericOAuth({ config: [ { providerId: "instagram", clientId: process.env.INSTAGRAM_CLIENT_ID as string, clientSecret: process.env.INSTAGRAM_CLIENT_SECRET as string, authorizationUrl: "https://api.instagram.com/oauth/authorize", tokenUrl: "https://api.instagram.com/oauth/access_token", scopes: ["user_profile", "user_media"], }, ], }), ], }); ```

Instagram OAuth sign-in call

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

Give your agent this brain