mirror of
https://github.com/Seldaek/monolog.git
synced 2025-10-22 00:56:08 +02:00
Revert "Switch HipChatHandler to API v2", fixes #525
This reverts commit 01549ec4d0
.
This commit is contained in:
@@ -118,6 +118,7 @@ class HipChatHandler extends SocketHandler
|
||||
{
|
||||
$dataArray = array(
|
||||
'from' => $this->name,
|
||||
'room_id' => $this->room,
|
||||
'notify' => $this->notify,
|
||||
'message' => $record['formatted'],
|
||||
'message_format' => $this->format,
|
||||
@@ -135,7 +136,7 @@ class HipChatHandler extends SocketHandler
|
||||
*/
|
||||
private function buildHeader($content)
|
||||
{
|
||||
$header = "POST /v2/room/".$this->room."/notification?auth_token=".$this->token." HTTP/1.1\r\n";
|
||||
$header = "POST /v1/rooms/message?format=json&auth_token=".$this->token." HTTP/1.1\r\n";
|
||||
$header .= "Host: {$this->host}\r\n";
|
||||
$header .= "Content-Type: application/x-www-form-urlencoded\r\n";
|
||||
$header .= "Content-Length: " . strlen($content) . "\r\n";
|
||||
|
Reference in New Issue
Block a user