✨ Check our Game Alchemy Workshop! ✨ Play Alchemy On our Website — Fuse and get Plus(+) — Gain points by making more Plus(+) — Have fun with Old Alchemy! ⭐ 150 Daily Points every 12h ⭐
Advertise
160x600
⚙️ SilkroadTopServers — Postback Integration Guide

📘 What is Postback?

The Postback System allows your server to automatically reward players after they vote on SilkroadTopServers.com.
We notify your website using a secure server-to-server cURL request.

✔ Impossible to fake • ✔ Instant reward • ✔ 100% secure • ✔ Works with HTTP & HTTPS

🔗 1. Your Postback URL Format

Add this URL in your server settings:

https://yourserver.com/postback/silkroadtopservers?postback={USER_ID}
Also supported (for servers without SSL):
http://yourserver.com/postback/silkroadtopservers?postback={USER_ID}

🧩 2. Example Postback Script (PHP)

<?php
$jid = intval($_GET['postback'] ?? 0);

if (!$jid) {
    http_response_code(400);
    exit("Missing JID");
}

$reward = 1; // silk/coins/points

// give_reward($jid, $reward);

file_put_contents(__DIR__."/postback_log.txt",
    date("Y-m-d H:i:s")." → JID $jid rewarded $reward\n",
    FILE_APPEND
);

echo "OK";
?>

🧪 3. Live Postback Tester (Server-to-Server)

This is the EXACT same method our vote system uses. No browser restrictions. No CORS.

✔ Works with HTTP or HTTPS
✔ Shows full response
✔ Same behavior as real player vote

🛡 4. Security Recommendations

📞 Need Help?

Contact us anytime via Discord or the contact form.