Serverless Settings
Bidapp SDK gives you the ability to manage ad network waterfall using your own server or manually by providing initialization keys and adTags identifiers for different ad formats through our API's.
Network SDK key
BIDConfiguration *bidConfig = [BIDConfiguration new];
NSError* error = nil;
[bidConfig setSDKKey:@"network_SDK_Key" networkId:networkId error:&error];let bidConfig = BIDConfiguration()
try? bidConfig.setSDKKey("network_SDK_Key", networkId: networkId)Network adTag for a desired ad format
BIDConfiguration *bidConfig = [BIDConfiguration new];
NSError* error = nil;
[bidConfig setAdTag:@"network_ad_tag"
networkId:networkId
adFormat:[BIDAdFormat interstitial]/* or any other ad format */
ecpm:5.1
error:&error];let bidConfig = BIDConfiguration()
try? bidConfig.setAdTag("network_ad_tag",
networkId: adNetworkId,
adFormat: BIDAdFormat.interstitial/* or any other ad format */ as! BIDAdFormat,
ecpm: 2.1)Last updated