Versions Compared

Key

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

...

Warning

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


Bir kullanıcı mobil uygulamanızda sepete ürün eklediğinde veya kaldırdığında aşağıdaki yöntemi kullanın:

Code Block
languageapplescript
titleObjective-C
NSMutableDictionary *properties = [[NSMutableDictionary alloc] init];
[properties setObject:@"Basket ID" forKey:@"OM.pbid"];
[properties setObject:@"Product1 Code;Product2 Code" forKey:@"OM.pb"];
[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:@"Cart" withProperties:properties];

...

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.








Parent TopicÜst Başlık: iOS - Mobile Tagging