Skip to content

Instantly share code, notes, and snippets.

@pythoninthegrass
Created July 23, 2025 17:20
Show Gist options
  • Save pythoninthegrass/538bc016b6d0654dbf6ad8a1536d3c30 to your computer and use it in GitHub Desktop.
Save pythoninthegrass/538bc016b6d0654dbf6ad8a1536d3c30 to your computer and use it in GitHub Desktop.
mvp for pushover.net
#!/usr/bin/env bash
export PUSHOVER_USER_KEY="<your_user_key>"
export PUSHOVER_APP_TOKEN="<your_app_token>"
curl -s \
--form-string "token=$PUSHOVER_APP_TOKEN" \
--form-string "user=$PUSHOVER_USER_KEY" \
--form-string "message=Hello, world!" \
https://api.pushover.net/1/messages.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment