hutchic on travis_exfiltrate
travis exfiltrate (compare)
hutchic on travis_exfiltrate
travis exfiltrate (compare)
<?php
require_once 'vendor/mashape/unirest-php/src/Unirest.php';
$response = Unirest\Request::get("https://webaroo-send-message-v1.p.mashape.com/sendMessage?message=asdddds&phone=9945297098",
array(
"X-Mashape-Key" => "my key",
"Accept" => "application/json"
),
array(
"txt" => "great value in its price range!"
)
);
var_dump($response);
?>