From 5363d5e7795bf5d84855cbdf518576d3d161a94d Mon Sep 17 00:00:00 2001 From: Andrew Weiss Date: Mon, 26 Feb 2018 12:12:05 -0800 Subject: [PATCH] Fix basApiUrl (#14) Rollbar expects the baseApiUrl to be without the `item/` at the end. --- Rollbar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rollbar.php b/Rollbar.php index ff19e36..ba8f139 100644 --- a/Rollbar.php +++ b/Rollbar.php @@ -9,7 +9,7 @@ class Rollbar extends Object { public $accessToken; - public $baseApiUrl = 'https://api.rollbar.com/api/1/item/'; + public $baseApiUrl = 'https://api.rollbar.com/api/1/'; public $batchSize; public $batched; public $branch;