Created Notify_bluesky (markdown)

master
Chris Caron 2025-03-09 20:23:27 -04:00
parent f15de1f644
commit 13124d24d6
1 changed files with 34 additions and 0 deletions

34
Notify_bluesky.md Normal file

@ -0,0 +1,34 @@
## BlueSky Notifications
* **Source**: https://bsky.app/
* **Attachment Support**: Yes
* **Icon Support**: No
* **Message Format**: Text
* **Message Limit**: 280 characters
### Account Setup
Twitter Direct Messages are slightly more complicated then some of the other notification services, so here is quick breakdown of what you need to know and do in order to send Notifications through it using this tool:
1. Create a BlueSky account
1. Access Settings -> Privacy and Security
1. Generate an App Password
1. Assemble your Apprise URL like:
- bluesky://handle@you-token-here
### Syntax
Valid syntax is as follows:
- `bluesky://user@app_pw`
- `bluesky://user.host@app_pw`
- This is only required if the `host` is not `bsky.social`
#### Example
Send a public message:
```bash
# Assuming our {Handle} is @John
# Assuming our {AppID} is abcd-1234-efghi-6789
# our user is @testaccount
apprise -vv -t "Test Message Title" -b "Test Message Body" \
"bluesky://John@abcd-1234-efghi-6789"
```