Integration Verified Successfully!
For detailed integration guides, API references, and best practices, visit our comprehensive documentation:
Disable Test Mode
You might see this screen because you have enabled test mode in the dashboard or included dev:1 in the integration code. To fix that, follow the option that matches how you enabled test mode:
✅ Method 1: Disable in Dashboard
If you enabled test mode through your MomentScience dashboard settings, you can quickly disable it from the same location. Watch the video below for a step-by-step walkthrough of the process.
Loading video...
🚀 Method 2: Remove from Code
If you added the dev:1 parameter directly in your integration code, locate this parameter and remove it completely. This will switch your integration to production mode and redirect users to actual advertiser landing pages.
Remove dev parameter:
// Test Mode
{
"merchant_id": "your_merchant_id",
"user_id": "user_123",
"dev": 1, ← Remove
"timestamp": "2025-11-06T18:58:02Z"
}
// Production Mode
{
"merchant_id": "your_merchant_id",
"user_id": "user_123",
"timestamp": "2025-11-06T18:58:02Z"
}