Comment on page
Migrate from TCF v1 to TCF v2
As of November 13, 2023, Ogury Choice Manager is deprecated, meaning it will no longer be supported or updated.
Consequently, no new consent notices will be delivered through Ogury Choice Manager's APIs. Therefore, it is strongly advised against using Ogury Choice Manager in new versions of applications. In case you have migrated to a new Consent Management Platform (CMP), ensure that Ogury and its partners are included as vendors.
For earlier versions of applications still using Ogury Choice Manager, the API will maintain its functionality, continuing to return consent for users who have previously responded to a consent notice. This will remain in effect until their consent expires.
Consent signals for TCF v1 are not compatible with TCF v2 due to IAB policies. Users with an existing TCF v1 answer will be exposed to the TCF v2 consent notice as if they were new users.
Update Ogury SDK version in your Cocoapods
Podfile
file or download the lastOguryChoiceManager.framework
. Use the latest version of the Ogury SDK.First thing after updating the version that you should done is initialization of the Choice Manager and ask for the consent. You should follow usual steps to be sure that
setup
is called first and after that ask
method.Each method call should be changed to use new approach, this is the pattern:
OguryChoiceManager.shared().tcfV2.methodName.
Make sure that you replaced all method calls in your project and do not call methods for TCFV1.For example, following code:
Swift
Objective C
OguryChoiceManager.shared().tcfV1.getIabString()
[[[OguryChoiceManager sharedManager] tcfV1] getIabString];
should be replaced with following code:
Swift
Objective C
OguryChoiceManager.shared().tcfV2.getIabString()
[[[OguryChoiceManager sharedManager] tcfV2] getIabString];
Pay attention that some methods and values are different between versions. Please read documentation for TCF v2 carefully.
There are completely new methods for Legitimate interests. If your project requires this kind of data please refer to the link and use available methods to achieve your goal.
Last modified 22d ago