当有人进行应用程序内购买时,有没有办法得到通知?

时间:2015-08-15 05:27:48

标签: ios objective-c in-app-purchase

我希望当有人在我的应用程序中进行应用程序内购买时收到通知,而不是等到第二天检查iTunes Connect以查看是否有任何销售。

有谁知道这样做的方法?如果没有,那真的很酷!

由于

3 个答案:

答案 0 :(得分:15)

跟踪StoreKit购买事件

购买时,请自行发送数据点(此处跟踪...

func paymentQueue(_ queue: SKPaymentQueue, updatedTransactions transactions: [SKPaymentTransaction]) {
    for transation in transactions {
        switch transation.transactionState {

            case .purchased:
                queue.finishTransaction(transation)
                // Track here...

            case .purchasing: break
            case .restored: break
            case .deferred: break
            case .failed: break
        }
    }
}

利用图书馆

使用分析。用以下任意一个块替换上面的// Track here...评论。按字母顺序排列的非详尽列表:

<强> Accengage

NSString *currencyCode = [<SKProduct.priceLocale>
                          objectForKey:NSLocaleCurrencyCode];
BMA4SPurchasedItem* item =
    [BMA4SPurchasedItem itemWithId(t.payment.productIdentifier)
        label:t.payment.productName
        category:<product.type>
        price:@(<SKProduct.price>)
        quantity:t.payment.quantity
];
[BMA4STracker trackPurchaseWithId:transaction.identifier
                         currency:currencyCode
                            items:@[item]];

<强>科

NSDictionary *state = @{ 
    @"itemId": @(t.payment.productIdentifier),
    @"price": <SKProduct.price>, 
    @"itemName": <SKProduct.name>, 
    @"currency":currencyCode };
[[Branch getInstance] userCompletedAction:@"purchase" withState:state];

面料(Crashlytics)

NSString *currencyCode = [<SKProduct.priceLocale>
                          objectForKey:NSLocaleCurrencyCode];
[Answers logPurchaseWithPrice:<SKProduct.price>
                     currency:currencyCode
                      success:@YES
                     itemName:<product name>
                     itemType:@"Purchase"
                       itemId:@(t.payment.productIdentifier)
             customAttributes:@{}];

<强> FlightRecorder

FlightRecorder.sharedInstance().trackEventWithCategory(
    "Actions",
    action: "Purchase",
    label: "productIdentifier",
    value: t.payment.productIdentifier)

Flurry Analytics

let properties = ["productIdentifier":t.payment.productIdentifier]
Flurry.logEvent("Purchase", withParameters: properties)

Google Analytics

#import "GAI.h"
#import "GAIDictionaryBuilder.h"

id<GAITracker> tracker = [[GAI sharedInstance] defaultTracker];
NSString *currencyCode = [<SKProduct.priceLocale>
                          objectForKey:NSLocaleCurrencyCode];
[tracker send:[[GAIDictionaryBuilder
                createItemWithTransactionId:transactionIdentifier
                name:<product.localizedTitle>
                sku:t.payment.productIdentifier
                category:@"Purchase"
                price:<SKProduct.price>
                quantity:@(t.payment.quantity)
                currencyCode:currencyCode]
               build]];

请参阅In-app purchase tracking with Google Analytics iOS SDK

堆分析

[Heap track:@"Purchase"
    withProperties:@{@"productIdentifier":@(t.payment.productIdentifier)}
];

Mixpanel Analytics (*)

Mixpanel.sharedInstance().track("Purchased",
                                properties: ["productIdentifier":transation.payment.productIdentifier])
     properties:@{@"productIdentifier":@(t.payment.productIdentifier)};

(*)支持WiFi报告(允许推迟所有报告,直到WiFi网络可用,以便不使用蜂窝数据)。请参阅下面的mixpanelWillFlush

<强> Parse.com

NSDictionary *dimensions =
    @{@"productIdentifier":@(t.payment.productIdentifier)};
[PFAnalytics trackEvent:@“Purchase” dimensions:dimensions];

从服务器发送电子邮件

POST购买到网址,然后服务器向您发送邮件或其他通知。

使用URLSession实施iOS:

if let url = URL(string: "https://<yoursite>/php/purchase.php") {
    var request = URLRequest(url: url)
    request.httpMethod = "POST"
    request.httpBody =
        "{\"productIdentifier\":\"\(transaction.payment.productIdentifier)\"}"
        .data(using: .utf8)
    request.addValue("application/json", forHTTPHeaderField: "Content-Type")
    request.addValue("application/json", forHTTPHeaderField: "Accept")
    let task = URLSession.shared.dataTask(with: request as URLRequest,
                                          completionHandler: {_,_,_ in })
    task.resume()
}

purchase.php电子邮件发件人:

<?php
try {
    header('Content-type: application/json');
    $to = 'bounce@stackoverflow.com';
    $subject = 'Purchase';
    $message = $_POST['productIdentifier'];
    $headers = "From: " . $to . "\n";
    @mail($to, $subject, $message, $headers)
} catch (Exception $e) {}
?>

►在GitHub上找到此解决方案,并在Swift Recipes上找到其他详细信息。

答案 1 :(得分:10)

Fabric (以前 Crashlytics ),除了是一个出色的(免费)崩溃记录系统外,还包含一个名为的组件答案,实时跟踪使用情况统计数据:

enter image description here

最近,他们添加了添加自定义事件跟踪功能,因此添加&#34;产品已购买&#34;是一件简单的事情。活动到你的应用程序。将Crashlytics添加到您的应用程序需要几秒钟(他们会引导您完成整个过程),并添加类似自定义的事件需要一行代码。从那时起,您将能够跟踪有关购买的所有信息,用户数量以及您要记录的任何其他元数据,所有这些信息都会延迟大约3秒。

我多年来一直在使用Crashlytics(实际上是基于我自己的StackOverflow question),我不能高度推荐它。它是免费的,简单的,非常有效的。

答案 2 :(得分:6)

我将所有IAP购买记录到Parse.com中的表格中。将所有数据从IAP收据推送到解析非常容易。我也在进行不可更新的订阅,并且我使用解析来同步用户设备之间的数据,因为StoreKit不会自动为不可更新的订阅执行此操作。