bluesky-social-pds
- Description:
Empower your network with self-hosted Bluesky PDS! Harness the power of AT Protocol to easily manage your data server. Seamless installation, full control, and enhanced security for your social media presence.
- Copyright:
- 2025 Eyevinn Technology AB
- See:
-
- Online docs for further information
Methods
(async, static) createBlueskySocialPdsInstance(context, body) → {BlueskySocialPds}
- Description:
Create a new Bluesky Personal Data Server instance
Example
import { Context } from '@osaas/client-core';
import { createBlueskySocialPdsInstance } from '@osaas/client-services';
const ctx = new Context();
const body: BlueskySocialPdsConfig = { name: 'myinstance', ... };
const instance = await createBlueskySocialPdsInstance(ctx, body);
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
body |
BlueskySocialPdsConfig | Service instance configuration |
Returns:
- Service instance
- Type
- BlueskySocialPds
(async, static) getBlueskySocialPdsInstance(context, name) → {BlueskySocialPds}
- Description:
Get a Bluesky Personal Data Server instance
Example
import { Context } from '@osaas/client-core';
import { getBlueskySocialPdsInstance } from '@osaas/client-services';
const ctx = new Context();
const instance = await getBlueskySocialPdsInstance(ctx, 'myinstance');
console.log(instance.url);
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the pds to be retrieved |
Returns:
- Service instance
- Type
- BlueskySocialPds
(async, static) removeBlueskySocialPdsInstance(context, name)
- Description:
Remove a Bluesky Personal Data Server instance
Parameters:
Name | Type | Description |
---|---|---|
context |
Context | Open Source Cloud configuration context |
name |
string | Name of the pds to be removed |