Versions Compared

Key

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

Use the following method to send search data, if there is a search function available in your mobile appMobil uygulamada kullanılabilir bir arama işlevi varsa, arama verilerini göndermek için aşağıdaki yöntemi kullanın:

Code Block
languageapplescript
titleObjective-C
NSMutableDictionary *properties = [[NSMutableDictionary alloc] init];
[properties setObject:@"Search Keyword" forKey:@"OM.ossOSS"];
[properties setObject:@"Number of Search Results" forKey:@"OM.ossrOSSR"];
[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:@"In App Search" withProperties:properties];

...

Code Block
languageapplescript
titleSwift
var properties = [String:String]()
properties["OM.ossOSS"] = "Search Keyword"
properties["OM.ossrOSSR"] = "Number of Search Results"
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("In App Search", withProperties: NSMutableDictionary(dictionary: properties))




Info

TokenID and AppID parameters are optional ve AppID parametreleri opsiyoneldir.


...

Note

You need to replace the Search Keyword with the user’s actual Search Phrase.

Note

Do not forget to use a universaID/customerID as the userID which you also share with other parties such as your ESP. If you are using a GSM number or an email address instead of a userID please send that info as the userID. Make sure that you share the same ID with all other parties.

Arama Anahtar Kelimesini (Search Keyword) kullanıcının gerçek arama kelimesi ile değiştirmeniz gerekmektedir.


Note

İnternet Servis Sağlayıcı (ESP) gibi üçüncü partilerle 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 (user ID) üçüncü partilerin hepsi ile paylaştığınızdan emin olun.




Ana Başlık: iOS - SDK