Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Warning

Boyut, renk, malzeme, vb. farklı ürün varyasyonları sunuyorsanız, entegrasyonunuz biraz farklı olacaktır, lütfen Product Variant (Ürün Değişkeni) sayfasındaki yönergeleri izleyin.


Kullanıcı bir veya daha fazla ürün satın aldığında aşağıdaki yöntemi kullanın:

Code Block
languageapplescript
titleObjective-C
NSMutableDictionary *properties = [[NSMutableDictionary alloc] init];
[properties setObject:@"Order ID" forKey:@"OM.tid"];
[properties setObject:@"Product1 Code;Product2 Code" forKey:@"OM.pp"];
[properties setObject:@"Product1 Quantity;Product2 Quantity" forKey:@"OM.pu"];
[properties setObject:@"Product1 Price*Product1 Quantity;Product2 Price*Product2 Quantity" forKey:@"OM.ppr"];
[properties setObject:@"memberID/userID" forKey:@"OM.exVisitorID"];
[properties setObject:@"Token ID to use for push messages" forKey:@"OM.sys.TokenID"];
[properties setObject:@"App ID to use for push messages" forKey:@"OM.sys.AppID"];
[[Visilabs callAPI] customEvent:@"Purchase" withProperties:properties];




Code Block
languageapplescript
titleSwift
var properties = [String:String]()
properties["OM.tid"] ="Order ID"
properties["OM.pp"] = "Product1 Code;Product2 Code"
properties["OM.pu"] = "Product1 Quantity;Product2 Quantity"
properties["OM.ppr"] = "Product1 Price*Product1 Quantity;Product2 Price*Product2 Quantity"
properties["OM.exVisitorID"] = "memberID/userID"
properties["OM.sys.TokenID"] = "Token ID to use for push messages"
properties["OM.sys.AppID"] = "App ID to use for push messages"
Visilabs.callAPI().customEvent("Purchase", withProperties: NSMutableDictionary(dictionary: properties))




Info

TokenID ve AppID parametreleri opsiyoneldir.

Note

İnternet Servis Sağlayıcı (ESP) gibi diğer taraflarla da paylaştığınız kullanıcı kimliği olarak bir evrenselID/müşteriID'si (universaID /customerID) kullanmayı unutmayın. Bir kullanıcı adı yerine bir GSM numarası veya e-posta adresi kullanıyorsanız lütfen bu bilgileri kullanıcı kimliği (user ID) olarak gönderin. Aynı kimliği tüm diğer taraflarla paylaştığınızdan emin olun.

Note

Lütfen numaraları gönderirken binler basamağı ayracını kullanmayınız.

Yanlış: 123.456,78 Doğru: 123456,78

Note

Kategori kodları ve isimleri gönderirken en üst kategoriden en alt seviyedeki alt kategoriye kadar tam hiyerarşiyi dahil etmeyi unutmayın. Örnek: bilgisayarlar | taşınabilir bilgisayarlar | dizüstü bilgisayarlar. Farklı kategori düzeylerini ayırmak için "|" pipe işaretçisini kullanın.

Note

Toplam gelir değeri, satın alınan öğelerin sayısının tek bir öğe fiyatı ile çarpımı olan OM.ppr parametresine iletilmesi gerekir.




Ana Başlık: iOS - Mobile Tagging