ProductAction api的setTransactionRevenue不会在仪表板中反映正确的结果

时间:2015-12-23 04:03:30

标签: android google-analytics google-analytics-api google-analytics-v4 google-analytics-sdk

我试图在很长一段时间内在Android中实施谷歌分析,我坚持实施最终的交易代码。 我做了什么

MyApp application =(MyApp)getApplication();

    Tracker mTracker = application.getDefaultTracker();
    Product product;
    ProductAction productAction = new ProductAction(ProductAction.ACTION_PURCHASE);

    mOrderedItems = mOrderPlaceResponse.getOrderDetails().getItemDetails();
    productAction.setTransactionId(mOrderPlaceResponse.getNumber());

    for (ItemDetail lineItem : mOrderedItems) {
        product = new Product()
                .setId(String.valueOf(lineItem.getDesignId()))
                .setName(lineItem.getTitle()).setQuantity(lineItem.getQuantity());
        product.setPrice(lineItem.getSoldAtPrice())
                .setCategory(lineItem.getType());

        productAction.setProductActionList(lineItem.getSource());
        productAction.setTransactionRevenue(lineItem.getSoldAtPrice() * lineItem.getQuantity());
        HitBuilders.EventBuilder builder = new HitBuilders.EventBuilder()
                .addProduct(product)
                .setProductAction(productAction);
        mTracker.send(builder.build());
    }

理想情况下,要发送的交易收入在交易的所有匹配中必须相同。 但是,当我这样做时,仪表板只显示我作为交易的一部分发送的第一个项目。

0 个答案:

没有答案