A/B Testing
info
Learn how to set up A/B testing in your by following the A/B Testing guide.
Retrieve A/B Testing Ids
After configuring an A/B test in your GameAnalytics dashboard you can retrive the testing ids with the following methods:
- C++
- IAnalyticsProvider
- Blueprint
// get the assigned A/B test id
FString AbTestingId = GameAnalytics->GetABTestingId();
// get the assigned A/B variant id
FString AbVariantId = GameAnalytics->GetABTestingVariantId();
caution
Not available inside the IAnalyticsProvider interface.
