diff options
author | Valentin Popov <info@valentineus.link> | 2017-10-26 08:48:08 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2017-10-26 08:48:08 +0300 |
commit | 5179a7ec051a7a7709efecbf7622693f3c40416b (patch) | |
tree | 7538234d06d517c9520737a7591f88f6f4207c61 | |
parent | 18a5d23d07628ba63d4256e02fb71a8fd7bad7bb (diff) | |
download | local_webhooks-5179a7ec051a7a7709efecbf7622693f3c40416b.tar.xz local_webhooks-5179a7ec051a7a7709efecbf7622693f3c40416b.zip |
Header type processing
-rw-r--r-- | classes/curl.php | 6 | ||||
-rw-r--r-- | classes/events.php | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/classes/curl.php b/classes/curl.php index b96367d..355b13c 100644 --- a/classes/curl.php +++ b/classes/curl.php @@ -33,14 +33,14 @@ class curl { } } - public static function request($url, $data) { - $ch = curl_init($url); + public static function request($callback, $data) { + $ch = curl_init($callback->url); curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST"); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HTTPHEADER, array( - "Content-Type: application/json", + "Content-Type: application/" . $callback->type, "Content-Length: " . strlen($data)) ); diff --git a/classes/events.php b/classes/events.php index 613ac9d..6740490 100644 --- a/classes/events.php +++ b/classes/events.php @@ -98,7 +98,7 @@ class events { private static function send($data, $callback) { $curl = new curl(); $package = self::packup($data); - $curl::request($callback->url, $package); + $curl::request($callback, $package); } /** |