Onesecondbefore supports the following platforms:
Contact support if you would like to receive an SDK on a different platform.
<script>
// Onesecondbefore Analytics
(function(o,n,e,s,b,f){osb_queue=n.osb_queue||[];osb=n.osb||function(){osb_queue.push(arguments)};
f=o.createElement('script');f.async=true;f.src=e+'/client/'+s+(b?'/'+b:'')+'.js';
o.currentScript.parentNode.insertBefore(f,o.currentScript.nextSibling);
})(document,window,'${TRACKER_URL}','${ACCOUNT_ID}', '${DEFAULT_SITE_ID}');
// Tracking events go here...
</script>
Make sure to replace the following text with the values that apply to your website. Contact us for guidance.
${TRACKER_URL}
replace with your tracker URL, e.g. https://myconsent.onesecondbefore.com
${ACCOUNT_ID}
replace with your account ID, e.g. myaccount.sandbox
${DEFAULT_SITE_ID}
replace with a default site ID, e.g. mycompany.com
The source code of the Android SDK is released as open source software under the Mozilla Public License.
Add the following repository and dependency to your app's build.gradle
file:
repositories {
...
maven {
url "https://www.onesecondbefore.com/repository"
}
}
dependencies {
...
implementation 'com.onesecondbefore.tracker:tracker-android:7.7.0'
}
After installation, consult our mobile reference documentation. Need help? Contact support.
Our IAB TCF Consent Wall can be integrated easily if you take the steps below. We map the purposes and special features as recommended by Google. Supported by SDK version 7.4+.
AndroidManifest.xml
(see below)More background info can be found at Google.
Add the default consent states in your app's AndroidManifest.xml
in the following way. More info can be found at Google.
<meta-data android:name="google_analytics_default_allow_analytics_storage" android:value="true" />
<meta-data android:name="google_analytics_default_allow_ad_storage" android:value="false" />
<meta-data android:name="google_analytics_default_allow_ad_user_data" android:value="false" />
<meta-data android:name="google_analytics_default_allow_ad_personalization_signals" android:value="false" />
Add the following code to integrate Google Consent Mode with the IAB TCF Consent Wall.
// Add callback function to OSB SDK. This function will be called directly after the user has set
// the consent in the CMP.
mOsb.addGoogleConsentCallback(consent -> {
Map consentMap = new HashMap<>();
consent.forEach((t,s) -> consentMap.put(FirebaseAnalytics.ConsentType.valueOf(t),
FirebaseAnalytics.ConsentStatus.valueOf(s)));
mFirebaseAnalytics.setConsent(consentMap);
});
Below is an example of how to retrieve the Google Consent Mode items.
// Directly request Google Consent Mode Payload from the OSB SDK. The SDK stores the given consent,
// if no consent has been given yet this function will return an empty map.
public void getGoogleConsentPayload() {
if (mOsb == null){
inializeOSB();
}
Map consentMap = new HashMap<>();
mOsb.getGoogleConsentPayload().forEach((t,s) -> consentMap.put(FirebaseAnalytics.ConsentType.valueOf(t),
FirebaseAnalytics.ConsentStatus.valueOf(s)));
Log.i(TAG, consentMap.toString());
}
The source code of the iOS SDK is released as open source software under the Mozilla Public License (MPL).
The OSB SDK can be integrated via CocoaPods.
target '[Your Target Name]' do
pod 'onesecondbefore-tracker'
end
Use import OSB
. We don't require any additional bridging header to use this pod file.
After installation, consult our mobile reference documentation. Need help? Contact support.
Our IAB TCF Consent Wall can be integrated easily if you take the steps below. We map the purposes and special features as recommended by Google. Supported by SDK version 7.4+.
info.plist
(see below)More background info can be found at Google.
Add the default consent states in your app's info.plist
in the following way. More info can be found at Google.
<key>GOOGLE_ANALYTICS_DEFAULT_ALLOW_ANALYTICS_STORAGE</key> <true/>
<key>GOOGLE_ANALYTICS_DEFAULT_ALLOW_AD_STORAGE</key> <false/>
<key>GOOGLE_ANALYTICS_DEFAULT_ALLOW_AD_USER_DATA</key> <false/>
<key>GOOGLE_ANALYTICS_DEFAULT_ALLOW_AD_PERSONALIZATION_SIGNALS</key> <false/>
Add the following code to integrate Google Consent Mode with the IAB TCF Consent Wall.
// Create a callback function
func googleConsentCallback(consent: [String: String]) -> Void {
Analytics.setConsent(Dictionary(uniqueKeysWithValues: consent.map { t, s in (ConsentType(rawValue: t),
ConsentStatus(rawValue: s)) }))
}
// Pass callback function to OSB SDK
osb.config(accountId: accountId, url: trackerUrl, siteId: siteId, consentCallback: googleConsentCallback)
Add the following code to get the Google Consent Mode settings and log them.
// Directly request Google Consent Mode Payload from the OSB SDK. The SDK stores the given consent,
// if no consent has been given yet this function will return an empty dictonary.
func getGoogleConsentModePayload() {
if let googleConsent = osb.getGoogleConsentModePayload() {
let consent = Dictionary(uniqueKeysWithValues: googleConsent.map { t, s in (ConsentType(rawValue: t),
ConsentStatus(rawValue: s)) })
print(consent)
}
}