From 13124d24d6a5fb8dbf838f03b346db70dee6e91d Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sun, 9 Mar 2025 20:23:27 -0400 Subject: [PATCH] Created Notify_bluesky (markdown) --- Notify_bluesky.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Notify_bluesky.md diff --git a/Notify_bluesky.md b/Notify_bluesky.md new file mode 100644 index 0000000..07acda9 --- /dev/null +++ b/Notify_bluesky.md @@ -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" + +``` \ No newline at end of file