最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

swift - In Firebase AB test, when selecting metrics in the “Goals” section, no metric (event) comes up - Stack Overflow

programmeradmin1浏览0评论

This is the code fragment I use for successful purchases.

    let price = (package.storeProduct.price as NSDecimalNumber).doubleValue
    let currency = package.storeProduct.priceFormatter?.currencyCode ?? "USD"
    let productId = package.storeProduct.productIdentifier
    
    let purchaseParams: [String: Any] = [
        AnalyticsParameterTransactionID: transaction.transactionIdentifier,
        AnalyticsParameterCurrency: currency,
        AnalyticsParameterValue: price,  // Critical for revenue reporting
        AnalyticsParameterItems: [
            [
                AnalyticsParameterItemID: productId,
                AnalyticsParameterItemName: package.storeProduct.localizedTitle,
                AnalyticsParameterItemCategory: "Subscription",
                AnalyticsParameterPrice: price,
                AnalyticsParameterQuantity: 1
            ]
        ]
    ]
    
    Analytics.logEvent(AnalyticsEventPurchase, parameters: purchaseParams)
    
    Analytics.logEvent("revenue", parameters: [
        "amount": price,
        "currency": currency,
        "product": productId
    ])

In my project, the “Purchase” event successfully falls into my events with purchases, as you can see on the screen, but there is no metric in the “Goals” tab when creating an AB test. I need to use the “Purchase Revenue” metric, how can I access it?

Goals metrics

Successful receipt of the Purchase event

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论