0

我已将 OpenX 广告服务器安装到我的域 www.mydomain.com/openx。效果很好,但现在我想在我的 iOS 应用中使用这些广告。我使用 OpenX iOS SDK ( http://www.openx.com/mobile/sdk-downloads )。

我的主要问题是我不知道在这些参数中放入什么:

[self.adBanner setDomain:@"www.mydomain.com/openx" portraitAdUID:@"" landscapeAdUID:@""];

ADUID 是什么意思?

4

2 回答 2

0

http://docs.openx.com/sdk/ 用于 OpenX 企业广告服务器。

OpenX 将其 Openx 源 PHP 代码出售给 Revive Ad Server Team。

要使用 openx-2.8.11 或 Revive-Adserver( http://www.revive-adserver.com/releases/revive-adserver-3.0.0.zip )在移动应用上投放广告,您需要编写移动 SDK。

OpenX Enterprise 中的广告单元 - 广告单元 ID

Revive 广告服务器中的区域(OpenX 源) - 区域 ID

您可以编写 Objective-C 代码来发送广告请求和接收广告响应(横幅、富媒体、视频)

mAdserv - 开源移动广告服务器

下载 mAdserv ,您可以拥有适用于 Android 和 iOS 的 SDK。

他们的 SDK 也开源。

您使用或自定义 sdk 的代码

问候,

金牛

于 2013-10-31T02:51:40.410 回答
0

It is an "Ad Unit ID". From the OpenX documentation:

Ad units are virtual representations of the specific areas in your site where you want to display ads. You can set up ad units for ads. When you create an ad unit, you specify attributes for it that will determine the kinds of ads that will display there. OpenX uses these ad unit attributes to generate the ad code that will make real-time requests to the ad server.

You need to set up the ad unit in your admin view of your ad server installation, then copy the assigned ad unit ID to your code in the portraitAdUID and landscapeAdUID arguments.

于 2013-08-18T17:26:05.730 回答