Добрый день!
Есть несколько вопросов по Трекингу кампаний Apple Search Ads:
1. интеграция iAd framework.
На странице
https://tech.yandex.ru/appmetrica/doc/mobile-tracking/concepts/searchads-settings-docpage/ есть ссылка на инструкцию по интеграции Search Ads которая ведёт на страницу авторизации
passport.yandex-team.ru.
Нашёл на сайте search ads про интеграцию, если я правильно понимаю нужно имплементировать Attribution Api из search ads для трекинга Яндекс метрики?
How to implement the API
(
https://searchads.apple.com/help/measure-results/)
To enable your app for attribution, follow these steps:
Add the iAd framework to the Xcode project file for your app.
Import the iAd headers in the file containing your attribution code:
#import <iAd/iAd.h>
Check for Search Ads attribution, and use the result in your campaign reporting.
// Check for iOS 10 attribution implementation
if ([[ADClient sharedClient] respondsToSelector:
@selector(requestAttributionDetailsWithBlock:)]) {
NSLog(@"iOS 10 call exists");
[[ADClient sharedClient] requestAttributionDetailsWithBlock:^(NSDictionary *attributionDetails, NSError *error) {
// Look inside of the returned dictionary for all attribution details
NSLog(@"Attribution Dictionary: %@", attributionDetails);
}];
}
Т.е. после добавления этого кода Яндекс метрика будет автоматически собирать данные?
2. Можно ли как то проверить собираются ли данные по трекингу кампаний в метрику без загрузки приложений в стор?