mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-22 19:33:27 +01:00
Update publish.md
This commit is contained in:
parent
6ece25e7f3
commit
fd2c6ef590
1 changed files with 93 additions and 16 deletions
109
docs/publish.md
109
docs/publish.md
|
@ -166,14 +166,14 @@ a [title](#message-title), and [tag messages](#tags-emojis) 🥳 🎉. Here's an
|
||||||
You can also do multi-line messages. Here's an example using a click action, a user action, with an external image attachment and forwarded via email:
|
You can also do multi-line messages. Here's an example using a click action, a user action, with an external image attachment and forwarded via email:
|
||||||
|
|
||||||
=== "Bash"
|
=== "Bash"
|
||||||
```
|
``` sh
|
||||||
#!/bin/bash
|
curl \
|
||||||
curl \
|
-H "Title: New visitor" \
|
||||||
-H "Click: https://home.nest.com/" \
|
-H "Click: https://home.nest.com/" \
|
||||||
-H "Attach: https://nest.com/view/yAxkasd.jpg" \
|
-H "Attach: https://nest.com/view/yAxkasd.jpg" \
|
||||||
-H "Actions: http, Open door, https://api.nest.com/open/yAxkasd, clear=true" \
|
-H "Actions: http, Open door, https://api.nest.com/open/yAxkasd, clear=true" \
|
||||||
-H "Email: phil@example.com" \
|
-H "Email: phil@example.com" \
|
||||||
-d "There's someone at the door. 🐶
|
-d "There's someone at the door. 🐶
|
||||||
|
|
||||||
Please check if it's a good boy or a hooman.
|
Please check if it's a good boy or a hooman.
|
||||||
Doggies have been known to ring the doorbell." \
|
Doggies have been known to ring the doorbell." \
|
||||||
|
@ -182,42 +182,119 @@ Doggies have been known to ring the doorbell." \
|
||||||
|
|
||||||
=== "ntfy CLI"
|
=== "ntfy CLI"
|
||||||
```
|
```
|
||||||
// TODO
|
ntfy publish \
|
||||||
|
--title="New visitor" \
|
||||||
|
--click="https://home.nest.com/" \
|
||||||
|
--attach="https://nest.com/view/yAxkasd.jpg" \
|
||||||
|
--actions="http, Open door, https://api.nest.com/open/yAxkasd, clear=true" \
|
||||||
|
--email="phil@example.com"
|
||||||
|
mydoorbell \
|
||||||
|
"There's someone at the door. 🐶
|
||||||
|
|
||||||
|
Please check if it's a good boy or a hooman.
|
||||||
|
Doggies have been known to ring the doorbell."
|
||||||
```
|
```
|
||||||
|
|
||||||
=== "HTTP"
|
=== "HTTP"
|
||||||
``` http
|
``` http
|
||||||
// TODO
|
POST /mydoorbell HTTP/1.1
|
||||||
|
Host: ntfy.sh
|
||||||
|
Title: New visitor
|
||||||
|
Click: https://home.nest.com/
|
||||||
|
Attach: https://nest.com/view/yAxkasd.jpg
|
||||||
|
Actions: http, Open door, https://api.nest.com/open/yAxkasd, clear=true
|
||||||
|
Email: phil@example.com
|
||||||
|
|
||||||
|
There's someone at the door. 🐶
|
||||||
|
|
||||||
|
Please check if it's a good boy or a hooman.
|
||||||
|
Doggies have been known to ring the doorbell.
|
||||||
```
|
```
|
||||||
|
|
||||||
=== "JavaScript"
|
=== "JavaScript"
|
||||||
``` javascript
|
``` javascript
|
||||||
// TODO
|
fetch('https://ntfy.sh/mydoorbell', {
|
||||||
|
method: 'POST', // PUT works too
|
||||||
|
headers: {
|
||||||
|
'Title': 'New visitor',
|
||||||
|
'Click': 'https://home.nest.com/',
|
||||||
|
'Attach': 'https://nest.com/view/yAxkasd.jpg',
|
||||||
|
'Actions': 'http, Open door, https://api.nest.com/open/yAxkasd, clear=true',
|
||||||
|
'Email': 'phil@example.com'
|
||||||
|
},
|
||||||
|
body: 'There's someone at the door. 🐶
|
||||||
|
|
||||||
|
Please check if it's a good boy or a hooman.
|
||||||
|
Doggies have been known to ring the doorbell.',
|
||||||
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
=== "Go"
|
=== "Go"
|
||||||
``` go
|
``` go
|
||||||
// TODO
|
req, _ := http.NewRequest("POST", "https://ntfy.sh/mydoorbell",
|
||||||
|
strings.NewReader("There's someone at the door. 🐶
|
||||||
|
|
||||||
|
Please check if it's a good boy or a hooman.
|
||||||
|
Doggies have been known to ring the doorbell."))
|
||||||
|
req.Header.Set("Title", "New visitor")
|
||||||
|
req.Header.Set("Click", "https://home.nest.com/")
|
||||||
|
req.Header.Set("Attach", "https://nest.com/view/yAxkasd.jpg")
|
||||||
|
req.Header.Set("Actions", "http, Open door, https://api.nest.com/open/yAxkasd, clear=true")
|
||||||
|
req.Header.Set("Email", "phil@example.com")
|
||||||
|
http.DefaultClient.Do(req)
|
||||||
```
|
```
|
||||||
|
|
||||||
=== "PowerShell"
|
=== "PowerShell"
|
||||||
``` powershell
|
``` powershell
|
||||||
// TODO
|
$uri = "https://ntfy.sh/mydoorbell"
|
||||||
|
$headers = @{ Title="New visitor"
|
||||||
|
Click="https://home.nest.com/"
|
||||||
|
Attach="https://nest.com/view/yAxkasd.jpg"
|
||||||
|
Actions="http, Open door, https://api.nest.com/open/yAxkasd, clear=true"
|
||||||
|
Email="phil@example.com"}
|
||||||
|
$body = "There's someone at the door. 🐶
|
||||||
|
|
||||||
|
Please check if it's a good boy or a hooman.
|
||||||
|
Doggies have been known to ring the doorbell."
|
||||||
|
Invoke-RestMethod -Method 'Post' -Uri $uri -Headers $headers -Body $body -UseBasicParsing
|
||||||
```
|
```
|
||||||
|
|
||||||
=== "Python"
|
=== "Python"
|
||||||
``` python
|
``` python
|
||||||
// TODO
|
requests.post("https://ntfy.sh/mydoorbell",
|
||||||
|
data="There's someone at the door. 🐶
|
||||||
|
|
||||||
|
Please check if it's a good boy or a hooman.
|
||||||
|
Doggies have been known to ring the doorbell.",
|
||||||
|
headers={
|
||||||
|
"Title": "New visitor",
|
||||||
|
"Click": "https://home.nest.com/",
|
||||||
|
"Attach": "https://nest.com/view/yAxkasd.jpg",
|
||||||
|
"Actions": "http, Open door, https://api.nest.com/open/yAxkasd, clear=true",
|
||||||
|
"Email": "phil@example.com"
|
||||||
|
})
|
||||||
```
|
```
|
||||||
|
|
||||||
=== "PHP"
|
=== "PHP"
|
||||||
``` php-inline
|
``` php-inline
|
||||||
// TODO
|
file_get_contents('https://ntfy.sh/mydoorbell', false, stream_context_create([
|
||||||
|
'http' => [
|
||||||
|
'method' => 'POST', // PUT also works
|
||||||
|
'header' =>
|
||||||
|
"Content-Type: text/plain\r\n" .
|
||||||
|
"Title: New visitor\r\n" .
|
||||||
|
"Click: https://home.nest.com/\r\n" .
|
||||||
|
"Attach: https://nest.com/view/yAxkasd.jpg" .
|
||||||
|
"Actions": "http, Open door, https://api.nest.com/open/yAxkasd, clear=true" .
|
||||||
|
"Email": "phil@example.com" ,
|
||||||
|
'content' => 'Remote access to phils-laptop detected. Act right away.'
|
||||||
|
]
|
||||||
|
]));
|
||||||
```
|
```
|
||||||
|
|
||||||
<figure markdown>
|
<figure markdown>
|
||||||
![priority notification](static/img/complete-notification.jpg){ width=500 }
|
![priority notification](static/img/complete-notification.jpg){ width=500 }
|
||||||
<figcaption>Detailed notification with title, priority, tags, on click, attachment link with custom file name, delayed delivery, multiline message and an action button</figcaption>
|
<figcaption>Notification using a click action, a user action, with an external image attachment and forwarded via email</figcaption>
|
||||||
</figure>
|
</figure>
|
||||||
|
|
||||||
## Message title
|
## Message title
|
||||||
|
|
Loading…
Reference in a new issue