User Tracking Decision API
Respect App Tracking Transparency: read and react to the user's tracking decision inside your WebViewGold iOS app.
In iOS, apps have to ask to track user data based on the Apple AppTrackingTransparency framework. WebViewGold allows you to see what choice the user made when they installed your app to act accordingly in your web app. The JavaScript variable trackingDisabled can be either set by WebViewGold to true to represent that tracking has been blocked or false if it hasn't been. On your web app, you can easily check the JavaScript status by first getting the JavaScript variable and then alerting it:
<a href="user-disable-tracking://">Set JavaScript variable</a> <a href="#" onClick="alert(trackingDisabled);">Show tracking decision</a>