2023-08-18 21:43:20 +09:00

21 lines
437 B
TypeScript

import { BskyClient } from "../src/lib/bskyClient"
const searchBskyUsers = async () => {
const agent = await BskyClient.createAgent({
identifier: process.env.BSKY_IDENTIFIER as string,
password: process.env.BSKY_PASSWORD as string,
})
const result = await agent.searchUser({
term: "llamaindex",
limit: 3,
})
return result
}
(async () => {
const result = await searchBskyUsers()
console.log(result)
})()