Les données retournées sont au format XML.
Document trouvé et modifié depuis Pastebin.
Les données retournées sont au format XML.
Document trouvé et modifié depuis Pastebin.
| #!/bin/bash | |
| if [ $# -eq 0 ]; then | |
| echo "Usage: ./pushover <message> [title]" | |
| exit | |
| fi | |
| MESSAGE=$1 | |
| TITLE=$2 |
| <?php | |
| require 'nmaApi.class.php'; | |
| function get_web_page($url) | |
| { | |
| //echo "curl:url<pre>".$url."</pre><BR>"; | |
| $options = array( | |
| CURLOPT_RETURNTRANSFER => true, // return web page | |
| CURLOPT_HEADER => false, // don't return headers | |
| CURLOPT_FOLLOWLOCATION => true, // follow redirects |