Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

Kullanıcı favorilere bir ürün eklediğinde aşağıdaki yöntemi kullanın:

Objective-C
NSMutableDictionary *properties = [[NSMutableDictionary alloc] init];
[properties setObject:@"Product Code" forKey:@"OM.pf"];
[properties setObject:@"1" forKey:@"OM.pfu"];
[properties setObject:@"Product Price" 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:@"Add To Favorites" withProperties:properties];
Swift
var properties = [String:String]()
properties["OM.pf"] = "Product Code"
properties["OM.pfu"] = "1"
properties["OM.ppr"] = "Product Price"
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("Add To Favorites", withProperties: NSMutableDictionary(dictionary: properties))



Kullanıcı bir ürünü favorilerden kaldırdığında aşağıdaki yöntemi kullanın:

Objective-C
NSMutableDictionary *properties = [[NSMutableDictionary alloc] init];
[properties setObject:@"Product Code" forKey:@"OM.pf"];
[properties setObject:@"-1" forKey:@"OM.pfu"];
[properties setObject:@"Product Price" 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:@"Add To Favorites" withProperties:properties];
Swift
var properties = [String:String]()
properties["OM.pf"] = "Product Code"
properties["OM.pfu"] = "-1"
properties["OM.ppr"] = "Product Price"
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("Add To Favorites", withProperties: NSMutableDictionary(dictionary: properties))

TokenID ve AppID parametreleri opsiyoneldir.

İ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.

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

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

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.



Ana Başlık: iOS - Mobile Tagging


  • No labels