Merge branch 'main' into develop-docs
This commit is contained in:
		
						commit
						15265d9ef3
					
				
					 1 changed files with 130 additions and 7 deletions
				
			
		
							
								
								
									
										125
									
								
								docs/publish.md
									
										
									
									
									
								
							
							
						
						
									
										125
									
								
								docs/publish.md
									
										
									
									
									
								
							|  | @ -36,6 +36,11 @@ Here's an example showing how to publish a simple message using a POST request: | |||
|         strings.NewReader("Backup successful 😀")) | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     Invoke-RestMethod -Method 'Post' -Uri https://ntfy.sh/topic -Body "Backup successful 😀" -UseBasicParsing | ||||
|     ``` | ||||
| 
 | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.post("https://ntfy.sh/mytopic",  | ||||
|  | @ -117,6 +122,16 @@ a [title](#message-title), and [tag messages](#tags-emojis) 🥳 🎉. Here's an | |||
| 	http.DefaultClient.Do(req) | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     $uri = "https://ntfy.sh/phil_alerts" | ||||
|     $headers = @{ Title="Unauthorized access detected" | ||||
|                   Priority="urgent" | ||||
|                   Tags="warning,skull" } | ||||
|     $body = "Remote access to phils-laptop detected. Act right away."               | ||||
|     Invoke-RestMethod -Method 'Post' -Uri $uri -Headers $headers -Body $body -UseBasicParsing | ||||
|     ``` | ||||
|      | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.post("https://ntfy.sh/phil_alerts", | ||||
|  | @ -191,6 +206,14 @@ you can set the `X-Title` header (or any of its aliases: `Title`, `ti`, or `t`). | |||
|     http.DefaultClient.Do(req) | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     $uri = "https://ntfy.sh/controversial" | ||||
|     $headers = @{ Title="Dogs are better than cats" } | ||||
|     $body = "Oh my ..." | ||||
|     Invoke-RestMethod -Method 'Post' -Uri $uri -Headers $headers -Body $body -UseBasicParsing | ||||
|     ``` | ||||
| 
 | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.post("https://ntfy.sh/controversial", | ||||
|  | @ -223,7 +246,7 @@ notification sounds and vibration patterns on your phone to map to these priorit | |||
| The following priorities exist: | ||||
| 
 | ||||
| | Priority             | Icon                                       | ID  | Name           | Description                                                                                            | | ||||
| |---|---|---|---|---| | ||||
| |----------------------|--------------------------------------------|-----|----------------|--------------------------------------------------------------------------------------------------------| | ||||
| | Max priority         |  | `5` | `max`/`urgent` | Really long vibration bursts, default notification sound with a pop-over notification.                 | | ||||
| | High priority        |  | `4` | `high`         | Long vibration burst, default notification sound with a pop-over notification.                         | | ||||
| | **Default priority** | *(none)*                                   | `3` | `default`      | Short default vibration and sound. Default notification behavior.                                      | | ||||
|  | @ -271,6 +294,14 @@ You can set the priority with the header `X-Priority` (or any of its aliases: `P | |||
|     http.DefaultClient.Do(req) | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     $uri = "https://ntfy.sh/phil_alerts" | ||||
|     $headers = @{ Priority="5" } | ||||
|     $body = "An urgent message" | ||||
|     Invoke-RestMethod -Method 'Post' -Uri $uri -Headers $headers -Body $body -UseBasicParsing | ||||
|     ``` | ||||
|      | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.post("https://ntfy.sh/phil_alerts", | ||||
|  | @ -382,6 +413,14 @@ them with a comma, e.g. `tag1,tag2,tag3`. | |||
|     http.DefaultClient.Do(req) | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     $uri = "https://ntfy.sh/backups" | ||||
|     $headers = @{ Tags="warning,mailsrv13,daily-backup" } | ||||
|     $body = "Backup of mailsrv13 failed" | ||||
|     Invoke-RestMethod -Method 'Post' -Uri $uri -Headers $headers -Body $body -UseBasicParsing | ||||
|     ``` | ||||
| 
 | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.post("https://ntfy.sh/backups", | ||||
|  | @ -464,6 +503,14 @@ to be delivered in 3 days, it'll remain in the cache for 3 days and 12 hours. Al | |||
|     http.DefaultClient.Do(req) | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     $uri = "https://ntfy.sh/hello" | ||||
|     $headers = @{ At="tomorrow, 10am" } | ||||
|     $body = "Good morning" | ||||
|     Invoke-RestMethod -Method 'Post' -Uri $uri -Headers $headers -Body $body -UseBasicParsing | ||||
|     ``` | ||||
|      | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.post("https://ntfy.sh/hello", | ||||
|  | @ -538,6 +585,11 @@ For instance, assuming your topic is `mywebhook`, you can simply call `/mywebhoo | |||
|     http.Get("https://ntfy.sh/mywebhook/trigger") | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     Invoke-RestMethod -Method 'Get' -Uri "ntfy.sh/mywebhook/trigger" | ||||
|     ```     | ||||
| 
 | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.get("https://ntfy.sh/mywebhook/trigger") | ||||
|  | @ -582,6 +634,11 @@ Here's an example with a custom message, tags and a priority: | |||
|     http.Get("https://ntfy.sh/mywebhook/publish?message=Webhook+triggered&priority=high&tags=warning,skull") | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     Invoke-RestMethod -Method 'Get' -Uri "ntfy.sh/mywebhook/publish?message=Webhook+triggered&priority=high&tags=warning,skull" | ||||
|     ``` | ||||
| 
 | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.get("https://ntfy.sh/mywebhook/publish?message=Webhook+triggered&priority=high&tags=warning,skull") | ||||
|  | @ -675,6 +732,22 @@ Here's an example using all supported parameters. The `topic` parameter is the o | |||
|     http.DefaultClient.Do(req) | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     $uri = "https://ntfy.sh" | ||||
|     $body = @{ | ||||
|             "topic"="powershell" | ||||
|             "title"="Low disk space alert" | ||||
|             "message"="Disk space is low at 5.1 GB" | ||||
|             "priority"=4 | ||||
|             "attach"="https://filesrv.lan/space.jpg" | ||||
|             "filename"="diskspace.jpg" | ||||
|             "tags"=@("warning","cd") | ||||
|             "click"= "https://homecamera.lan/xasds1h2xsSsa/" | ||||
|           } | ConvertTo-Json | ||||
|     Invoke-RestMethod -Method 'Post' -Uri $uri -Body $body -ContentType "application/json" -UseBasicParsing | ||||
|     ``` | ||||
| 
 | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.post("https://ntfy.sh/", | ||||
|  | @ -774,6 +847,14 @@ Here's an example that will open Reddit when the notification is clicked: | |||
|     http.DefaultClient.Do(req) | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     $uri = "https://ntfy.sh/reddit_alerts" | ||||
|     $headers = @{ Click="https://www.reddit.com/message/messages" } | ||||
|     $body = "New messages on Reddit" | ||||
|     Invoke-RestMethod -Method 'Post' -Uri $uri -Headers $headers -Body $body -UseBasicParsing | ||||
|     ``` | ||||
| 
 | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.post("https://ntfy.sh/reddit_alerts", | ||||
|  | @ -936,6 +1017,13 @@ Here's an example showing how to attach an APK file: | |||
|     http.DefaultClient.Do(req) | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     $uri = "https://ntfy.sh/mydownloads" | ||||
|     $headers = @{ Attach="https://f-droid.org/F-Droid.apk" } | ||||
|     Invoke-RestMethod -Method 'Post' -Uri $uri -Headers $headers -UseBasicParsing | ||||
|     ``` | ||||
| 
 | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.put("https://ntfy.sh/mydownloads", | ||||
|  | @ -1025,6 +1113,17 @@ that, your IP address appears in the e-mail body. This is to prevent abuse. | |||
|     http.DefaultClient.Do(req) | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     $uri = "https://ntfy.sh/alerts" | ||||
|     $headers = @{ Title"="Low disk space alert" | ||||
|                   Priority="high" | ||||
|                   Tags="warning,skull,backup-host,ssh-login") | ||||
|                   Email="phil@example.com" } | ||||
|     $body = "Unknown login from 5.31.23.83 to backups.example.com" | ||||
|     Invoke-RestMethod -Method 'Post' -Uri $uri -Body $body -UseBasicParsing | ||||
|     ``` | ||||
| 
 | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.post("https://ntfy.sh/alerts", | ||||
|  | @ -1135,6 +1234,14 @@ Here's a simple example: | |||
|     http.DefaultClient.Do(req) | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     $uri = "https://ntfy.example.com/mysecrets" | ||||
|     $headers = @{ Authorization="Basic cGhpbDpteXBhc3M=" } | ||||
|     $body = "Look ma, with auth" | ||||
|     Invoke-RestMethod -Method 'Post' -Uri $uri -Body $body -Headers $headers -UseBasicParsing | ||||
|     ``` | ||||
| 
 | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.post("https://ntfy.example.com/mysecrets", | ||||
|  | @ -1210,6 +1317,14 @@ are still delivered to connected subscribers, but [`since=`](subscribe/api.md#fe | |||
|     http.DefaultClient.Do(req) | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     $uri = "https://ntfy.sh/mytopic" | ||||
|     $headers = @{ Cache="no" } | ||||
|     $body = "This message won't be stored server-side" | ||||
|     Invoke-RestMethod -Method 'Post' -Uri $uri -Body $body -Headers $headers -UseBasicParsing | ||||
|     ``` | ||||
| 
 | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.post("https://ntfy.sh/mytopic", | ||||
|  | @ -1282,6 +1397,14 @@ to `no`. This will instruct the server not to forward messages to Firebase. | |||
|     http.DefaultClient.Do(req) | ||||
|     ``` | ||||
| 
 | ||||
| === "PowerShell" | ||||
|     ``` powershell | ||||
|     $uri = "https://ntfy.sh/mytopic" | ||||
|     $headers = @{ Firebase="no" } | ||||
|     $body = "This message won't be forwarded to FCM" | ||||
|     Invoke-RestMethod -Method 'Post' -Uri $uri -Body $body -Headers $headers -UseBasicParsing | ||||
|     ``` | ||||
| 
 | ||||
| === "Python" | ||||
|     ``` python | ||||
|     requests.post("https://ntfy.sh/mytopic", | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue