Important
This is still in the beta stages. Not all functions have been completed and the documentation is missing.
- Instantiate a client
- Login
- Interact with Bluesky
const bsClient = new BlueSkyClient(identifier,password)
let profile;
try {
await bsClient.login();
profile = await bsClient.getProfile(identifier);
} catch (error) {
context.error(error.message);
}