mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-04 13:47:36 +03:00
WIP: Docs
This commit is contained in:
parent
1e7ae885b4
commit
ae7bfb2c97
28 changed files with 822 additions and 1 deletions
14
examples/publish-php/publish.php
Normal file
14
examples/publish-php/publish.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?php
|
||||
|
||||
// Check out https://ntfy.sh/phil_alerts in your browser after running this.
|
||||
file_get_contents('https://ntfy.sh/phil_alerts', false, stream_context_create([
|
||||
'http' => [
|
||||
'method' => 'POST', // PUT also works
|
||||
'header' =>
|
||||
"Content-Type: text/plain\r\n" .
|
||||
"Title: Unauthorized access detected\r\n" .
|
||||
"Priority: urgent\r\n" .
|
||||
"Tags: warning,skull",
|
||||
'content' => 'Remote access to phils-laptop detected. Act right away.'
|
||||
]
|
||||
]));
|
Loading…
Add table
Add a link
Reference in a new issue