How to Verify App Installs with Callback Verification
Enable callback verification to automatically verify if users really downloaded the app. Only participants who have downloaded the app are able to complete this task.







Enable callback verification to automatically verify if users really downloaded the app. Only participants who have downloaded the app are able to complete this task.







const { track_id, send } = queryString.parse(deepLink.search); // your deepLink params
const remark = "remark"; // optional
const event = "app_download";
const data = `track_id=${track_id}&event=${event}&remark=${remark}`; // optional
const sign = crypto.HmacSHA256(data, api_key).toString(); // HmacSHA256
fetch("https://cwallet.com/public/v1/giveaway/task/callback", {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify({
track_id,
sign,
event,
remark,
}),
}).then(async (res) => {
console.log(await res.json());
});