AerServ Mediation Overview
The following diagram illustrates the interaction between LTV Platform services, Tapjoy’s AerServ Adaptor, the AerServ SDK and adaptors / SDKs of optional video demand sources:
Required Software |
---|
Tapjoy SDK: IOS |
AerServ SDK: IOS |
Adapter Code: IOS |
Sample App: IOS |
These instructions assume you have ALREADY done the following:
- AerServ Account Setup
- Tapjoy Account Setup
- Integrate AerServ (Android SDK)
- Integrate the Tapjoy (Android SDK)
- Set up a placement and content unit in the Tapjoy dashboard and in your application:
- Test to make sure you can see Tapjoy content from your application. Download the sample app to verify integration.
Step 1: Xcode Project Setup
A. Adding the AerServ iOS SDK
AerServSDK (Init method *Recommended)
This method is recommended if you are planning to use Adcolony, Vungle, Chartboost, Unity, Applovin SDK Mediation as it will improve ads delivery.
- Import AerServSDK.h to AppDelegate.m
- Add this line of code to Init AerServ SDK your SITE ID
- To locate your site ID - Click Inventory Tab - Edit App - Look for APP ID
#import "AerServSDK/AerServSDK.h"
...
[AerServSDK initializeWithSiteID:@[@"SITE ID"]];
return Yes;
B. Adding Tapjoy AerServ Mediation Adapters: iOS
After downloading and unzipping the Tapjoy SDK, right-click the project icon in your project explorer in Xcode, then select "Add Files to "<your app name>"":
Navigate to the AerServ folder in the the Tapjoy SDK:
TapjoySDK_iOS_<version>/Libraries/ThirdPartySupport/AerServ
Choose the following files:
AerServCustomPlacement.h
AerServCustomPlacement.m
ASTapjoyInterstitialAdProvider.h
ASTapjoyInterstitialAdProvider.m
Then click "Add":
Step 2: AerServ Dashboard Setup: Add Tapjoy
To add Tapjoy to your AerServ waterfall, follow the instructions for adding an Ad Source on the AerServ dashboard. Make sure to prioritize the Tapjoy source at the top when testing Tapjoy.
Add the placement name you’re using on the Tapjoy dashboard as a publisher-specific parameter.
A. Adding an Ad Source
- Click the Ad Sources tab
- Click the + button to add an ad source
B. Fill in the Tapjoy Ad Source Details
- Enter a Name for the ad source (example: Tapjoy Android Interstitial)
- Select Tapjoy in the dropdown box
- Enter Tapjoy Placement Name (example: aerserv_config_video )
- Enter in the estimated CPM
- Select the Payment Terms
- Set Placement
- Select Countries targeting (optional)
- Select Device targeting (optional)
- Click Save
C. How to locate your Tapjoy Placement ID:
- Click "Monetize" in the left menu bar
- Click the White "Manage Placement" button in the upper right corner of the dashboard.
- Select the Tapjoy Placement Name
Step 3: Tapjoy dashboard Setup
A. Link your AerServ and Tapjoy Accounts and Applications
PLEASE NOTE: Tapjoy-AerServ account linking is strictly one-to-one: a single Tapjoy account links to a single AerServ account. It is not possible to link multiple Tapjoy accounts to a single AerServ account or vice-versa.
- Link your AerServ account to your Tapjoy account. From the Tapjoy dashboard, go to App Settings → Content → Mediation. Select “AerServ” as the Mediation Provider. Give the configuration a name of your choosing. Click Save:
- An “Authentication Status” section will appear. Click the “Login” button.
- Next you will see the AerServ login page. Enter your AerServ account credentials and click "Login."
- On the following confirmation page, be sure to select "Approve," then click "Submit":
- You will be redirected back to the Tapjoy App Settings page. Your accounts are now linked. Use the dropdown menus to select the AerServ app that corresponds to your current Tapjoy iOS and/or Android Tapjoy app. (If your Tapjoy app is only on a single platform, you can leave the other platform blank.)
Create a Mediated Content Card on the Tapjoy dashboard
- On the Tapjoy Dashboard, Go to "Monetize", then click the "Create Content" button in the upper right.
- Scroll down the list of content types until you get to Mediated Auto Play Video (also called "Direct Play") or Mediated Display Ad (also called "FSI"). Select the appropriate content card and click the "AerServ" button:
- Fill out the resulting Content Card creation form. Be sure to select the Tapjoy placement at which you want the AerServ Mediated content to appear:
- In the "Network Settings" section, select the AerServ placement you want this Mediated Content Card to call from the dropdown menu:
- Click the green "Save" button on the bottom left:
Prioritize the Mediated Content Card on the Tapjoy dashboard
- Prioritize the Mediated Content Card you just created relative to the other Content Cards at that Tapjoy Placement. On the Tapjoy Dashboard, go to "Monetize", "Manage Placements":
- Drag the Mediated Content Card you just created up and down the placement to prioritize it. Content Cards on top of the stack are checked first:
- By calling the Tapjoy placement from your application’s code, you should be getting AerServ mediated content (which may include Tapjoy content).
Step 4: Adding Additional Mediation Networks
Instructions on the adding Additional Ad sources on AerServ dashboard
Here’s a list of SDK Mediation partners:
Step 5: Configure Rewards and Virtual Currency
- For Tapjoy content, currency rewards will be served through Tapjoy’s virtual currency system. See Tapjoy’s virtual currency docs for details about enabling Tapjoy virtual currency.
- For all other content, you should enable virtual currency on the AerServ platform. These rewards will be fired on the client when videos complete and propagated through Tapjoy’s SDK via a callback:
iOS
// itemId = currency name specified on AerServ’s dashboard // quantity = amount to reward - (void)placement:(TJPlacement*)placement didRequestReward:(TJActionRequest*)request itemId:(NSString*)itemId quantity:(int)quantity
Comments