'Facebook GDPR iOS App with External SDK Cookie
in order to be compliant with this GDPR: FB SDK Best Practices for GDPR Compliance (probably is old/deprecated docs because still use "AutoInit"
What needs to be done?
In didFinishLaunchingWithOptions i called this one
[[FBSDKApplicationDelegate sharedInstance] application:application didFinishLaunchingWithOptions:launchOptions];
But having an external SDK that manages cookies (and all SKD in the APP), what should i disable?
Only this one in the info.plist
<key> FacebookAutoLogAppEventsEnabled </key> <false />
and enable it or not according to the choice in the SDK_Cookie like this
[FBSDKSettings.sharedSettings setAutoLogAppEventsEnabled:myBoolFromSDK_Cookie];
Could you explain step by step?
If I disable all SDK also al deferral deep link stop working? (Is that right?)
[FBSDKAppLinkUtility fetchDeferredAppLink
How can I take this activation out to the didFinishLaunchingWithOptions to put it in a generic function? (Since the user must first give the consent then facebook should do the init?)
Thanks for your help
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
