Initiates the Bluesky OAuth2 authorisation flow and returns a URL to redirect the user to.
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/connections/bluesky/authorize \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"handle": "<string>"
}
'{
"authorize_url": "<string>"
}User session token from login: Authorization: <token> (no prefix). Prefer a bot account over user tokens where possible.
The Bluesky handle to connect (e.g. alice.bsky.social)
1 - 253Success
The URL to redirect the user to for Bluesky authorisation
curl --request POST \
--url https://api.fluxer.app/v1/users/@me/connections/bluesky/authorize \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"handle": "<string>"
}
'{
"authorize_url": "<string>"
}