ios - 为 testDevices 和测试广告查找 Google DFP SDK 设备 ID
<p><p>我正在尝试使用 Google 的测试广告单元使用 Google 的 DFP SDK 调试和开发我的应用。这样做需要将设备的标识符(如 Google 定义的那样)添加到 DFPRequest 对象的 <code>request.testDevices[]</code> 属性中。</p>
<p>最新版本的 DFP SDK 添加了一条日志消息以显示当前设备的 ID,还添加了对 <code>kGADSimulatorID</code> 的支持,以便在 sim 中运行。这允许开发人员运行应用程序,从控制台复制设备 ID,然后修改代码以将其添加到 <code>testDevices[]</code> 数组。但是,不存在用于在运行时检测 ID 并持续注册当前设备以接收测试广告的文档或工具。</p>
<p>如何获得相当于 Google 的 <code>-</code> 调用(这不是公共(public)方法),这是我可以添加到 <code>testDevices[ 的 ID ]</code> 数组并让我的应用始终在任何设备上调用测试广告?</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>Google 的 SDK 使用规定的 <code>.advertisingIdentifier</code> 属性作为其标识符的基础。然后它根据广告标识符创建一个 MD5 散列。因此,如果设置了 <code>isUsingTestAds</code> 标志,则以下代码允许我的应用在其运行的任何设备上调用测试广告:</p>
<pre><code>DFPRequest *request = ;
...
if (isUsingTestAds) {
NSString *currentDeviceID = .advertisingIdentifier UUIDString]];
request.testDevices = @[ kGADSimulatorID, // iOS simulator
currentDeviceID
];
...
</code></pre>
<p><code>md5WithString</code> 函数是通用的,几乎可以在任何地方使用。</p></p>
<p style="font-size: 20px;">关于ios - 为 testDevices 和测试广告查找 Google DFP SDK 设备 ID,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/30945335/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/30945335/
</a>
</p>
页:
[1]