a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs(oauth-browser-client): encourage using `/oauth-client-metadata.json` as that hides the full path during authorization flow

Mary a0372ec2 00e430f4

+2 -2
+2 -2
packages/oauth/browser-client/README.md
··· 26 26 27 27 configureOAuth({ 28 28 metadata: { 29 - client_id: 'https://example.com/oauth/client-metadata.json', 29 + client_id: 'https://example.com/oauth-client-metadata.json', 30 30 redirect_uri: 'https://example.com/oauth/callback', 31 31 }, 32 32 }); ··· 203 203 204 204 ```ts 205 205 /// vite.config.ts 206 - import metadata from './public/oauth/client-metadata.json' with { type: 'json' }; 206 + import metadata from './public/oauth-client-metadata.json' with { type: 'json' }; 207 207 208 208 export default defineConfig({ 209 209 // ...