-
Notifications
You must be signed in to change notification settings - Fork 20
Open
Description
Doesn't seem to work properly and sends only half of data. In javascript everything works fine. I use it like this:
$t = new \Std\GATracker('UA-12345678-1', null, $tr->userId);
$t->send('transaction', array(
'transactionId' => $tr->id,
'transactionRevenue' => $tr->price
));
foreach($items as $item) {
$t->send('item', array(
'transactionId' => $tr->id,
'itemName' => $item['name'],
'itemCode' => $item['id'],
'itemCategory' => $item['category'],
'itemPrice' => $item['price'],
'itemQuantity' => 1
));
}
tcpdump shows that all requests are actually sent to analytics server so I don't know what is happening. Any ideas?
Metadata
Metadata
Assignees
Labels
No labels