henq on Nostr: QUESTION: On Telegram , I can post a simple text message with 1 simple URL call. Can ...
QUESTION: On Telegram , I can post a simple text message with 1 simple URL call. Can I do something similar on Nostr?
Send a message using the Telegram HTTP API:
https://core.telegram.org/bots/api#sendmessage
curl -X POST \
-H 'Content-Type: application/json' \
-d '{"chat_id": "123456789", "text": "This is a test from curl",
"disable_notification": true}' \
https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendMessage
Send a message using the Telegram HTTP API:
https://core.telegram.org/bots/api#sendmessage
curl -X POST \
-H 'Content-Type: application/json' \
-d '{"chat_id": "123456789", "text": "This is a test from curl",
"disable_notification": true}' \
https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendMessage