我的代码中有错误 400 Invalid endpoint:
$this->load->library('PHPRequests');
$headers = array(
'X-CleverTap-Account-Id' => 'xxxx-xxx-xxx-xxxx',
'X-CleverTap-Passcode' => 'xxx-xxx-xxx',
'Content-Type' => 'application/json; charset=utf-8'
);
$data = '{ "d": [ { "FBID": "34322423", "ts": 1468308340, "type": "event", "evtName": "Product viewed", "evtData": { "Product name": "Casio Chronograph Watch", "Category": "Mens Watch", "Price": 59.99, "Currency": "USD" } } ] }';
$response = Requests::post('https://api.clevertap.com/1/upload', $headers, $data);
echo "<pre>";
print_r($response);
echo "</pre>";
请帮我解决这个问题