Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 820 Bytes

File metadata and controls

24 lines (18 loc) · 820 Bytes

Zernio::ConnectBlueskyCredentialsRequest

Properties

Name Type Description Notes
identifier String Your Bluesky handle (e.g. user.bsky.social) or email address
app_password String App password generated from Bluesky Settings > App Passwords
state String Required state formatted as {userId}-{profileId}. Get userId from GET /v1/users and profileId from GET /v1/profiles.
redirect_uri String Optional URL to redirect to after successful connection [optional]

Example

require 'zernio-sdk'

instance = Zernio::ConnectBlueskyCredentialsRequest.new(
  identifier: null,
  app_password: null,
  state: 6507a1b2c3d4e5f6a7b8c9d0-6507a1b2c3d4e5f6a7b8c9d1,
  redirect_uri: null
)