gpt4 book ai didi

android - GDPR 同意屏幕和编码

转载 作者:行者123 更新时间:2023-12-05 00:05:26 25 4
gpt4 key购买 nike

我将在我的应用程序中转换广告,所以我对 GDPR 的同意感到疯狂。这就是我寻求帮助的原因。

我已经阅读了很多(很多)关于 GDPR 的网页,但它们对我的小脑袋来说太困惑了。所以我想知道这里是否有人可以显示一些光。
首先,我想要最简单的解决方案。我不希望用户选择做什么或不做什么。我的意思是,我的应用程序的第一个屏幕将显示 EULA 和 Cookie 同意书。如果用户接受它们,则应用程序继续,否则,应用程序将关闭。就是这样。我认为人们太疯狂了,因为展示广告就让他们的隐私被盗。如果他们如此害怕,他们可以购买没有广告的付费应用程序。

当然,我的应用程序不会获取任何私有(private)数据(没有联系人、没有电话、没有位置),也不会与任何第三方共享。它只是一个想要以合法方式展示广告的常规应用程序。

根据IAB格式的同意,我发现并编码问题。我认为这是一个0或1的长链,取决于不同的情况。任何人都可以帮助如何编码吗?

我将向用户展示一些这样的文本:

You must read and agree the End User Licence Agreement (EULA) and the Cookie Consent to continue.

Cookie consent:

European laws require that digital publishers give user of apps information about their use of COOKIES and other forms of local storage. You must agree the next consent to continue: We use device identifiers, location data, and other demographic and interest data to personalise content and ads, to provide media features and to analyse our traffic. We also share such identifiers and other information from your device with our advertising and analytics partners (which are InMobi.com, Smaato, StartAp and Flurry).



也许第一个问题是:我真的需要以 IAB 格式编写同意书吗?

许多广告公司要求它。例如 InMobi:
    JSONObject consentObject = new JSONObject();
try {
// Provide correct consent value to sdk which is obtained by User
consentObject.put(InMobiSdk.IM_GDPR_CONSENT_AVAILABLE, true);
// Provide 0 if GDPR is not applicable and 1 if applicable
consentObject.put("gdpr", "1");
// Provide user consent in IAB format
consentObject.put(InMobiSdk.IM_GDPR_CONSENT_IAB, “<<consent in IAB format>>”);
} catch (JSONException e) {
}
InMobiSdk.init(this, "Insert InMobi Account ID here", consentObject);

最后一个问题:据我所知,必须仅向欧洲人显示 GDPR 同意,为什么我会在我的应用程序中知道用户当前是在欧洲还是在美国?

最佳答案

首先,我想根据您的问题纠正您的一些理解。

Of course my app doesn't take any private data (no contacts, no calls, no location) and doesn't share it with any third parties. It is just a regular app that wants to display ads in a legal way.


如果您的应用程序没有收集任何个人数据,那么为什么要使用 GDPR?当您集成任何广告网络时,他们实际上会收集其中一些数据(例如位置),以便为用户提供更有针对性的广告。现在,您在广告网络上设置的 IAB 字符串定义了在欧盟地区可以收集和不能收集的广告网络。
现在来获得您需要的实际帮助

I have found an encoding problem according to the consent in IAB format. I think it is a long chain of 0 or 1 depending on the different situations. Can anyone help how to code that?


是的,IAB 格式有点棘手。因此,出现了主要称为 CMP(同意管理平台)的新 SDK,您可以集成它们以代表您征得用户的同意。有很多公司提供此类支持(仅举几例 LiveRamp、Oggury)。但是,当您集成 CMP 时,请确保集成的网络也支持从 CMP 读取同意书。 InMobi v9.1.0+ 支持 CMP 集成。通过使用 CMP 和 InMobi v9.1.0+,您可以在进行 SDK 初始化时安全地删除同意对象。
希望这可以帮助。如有任何疑问,请在此处发表评论。

关于android - GDPR 同意屏幕和编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59490612/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com