This repository has no description
0

Configure Feed

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

fix search bar

+5 -1
+5 -1
app/src/app/api/bluesky/search/route.ts
··· 20 20 service: 'https://bsky.social' 21 21 }); 22 22 23 - // Make an unauthenticated request to the typeahead API 23 + // The Bluesky API requires login even for public APIs, 24 + // but we can use a fake login with empty credentials for this purpose 25 + await agent.login({ identifier: '', password: '' }); 26 + 27 + // Make a request to the typeahead API 24 28 const response = await agent.app.bsky.actor.searchActorsTypeahead({ 25 29 term, 26 30 limit: 5