-
Notifications
You must be signed in to change notification settings - Fork 8
Adding Search Words
Vladas Drejeris edited this page Jun 4, 2021
·
3 revisions
Search word targeting functionality allows publishers to pass search words to Adform PPAS via placement tags and target them within Line Items. In order to pass search words to PPAS following configuration needs to be added to the placement:
Swift
adView.searchWords = [AFKeyValue(key: "category", value: "books"), AFKeyValue(key: "product", value: "the book")]
Objective-C
adView.searchWords = @[AFKeyValue(@"category": @"books"), AFKeyValue(@"product": @"the book")];
or you can use a helper function to convert an NSDictionary with key values to search words like this:
Swift
let searchWords = ["category": "books", "product": "the book"]
adView.searchWords = AFKeyValuesFromNSDictionary(searchWords)
Objective-C
NSDictionary *searchWords = @{@"category": @"books", @"product": @"the book"};
adView.searchWords = AFKeyValuesFromNSDictionary(searchWords);
Basic integrations
- Integrating Inline Ad
- Integrating Full Screen Overlay Ad
- Integrating AdHesion Ad
- Integrating Interstitial Ad
- Video Ad Integration
- Debug mode
- Troubleshooting
Advanced integrations
- Advanced Inline Ad Integration
- Integrating Inline Ads in UITableView
- Advanced Full Screen Overlay Ad Integration
- Advanced Interstitial Ad Integration
- Instream Video Ads
Other
- Adding Custom Values
- Adding Keywords
- Adding Key Value Pairs
- Adding Search Words
- Location Tracking
- Security
- Ad Tags
- Header Bidding
- Changing ADX Domain
- Specifying banner loading behaviour
- Customizing in app browser
- GDPR
- US Privacy
- Localization
- In app deeplinks
Mediation adapters