SDK Integration Instructions(Multi-Step Tasks)
Step 1. Connect the SDK
<script src="https://sdk.tappads.io/adv/sdk_v1.js"></script>Step 2. Initialize the SDK
TappAdsAdvSdk.init('your_adv_apikey', {
debug: true, // Leave as true for debugging
})
.then(() => {
console.log('TappAdsAdvSdk initialized');
})
.catch(err => {
console.error('Error initializing TappAdsAdvSdk:', err);
});Step 3. Configure the Target Action
Example of Full Integration Code
Conclusion
Last updated