الان با جاوا اسکریپت وبسرویس ثبت نام رو کال میکنم خروجی هم اوکی میده
ولی هیچچ لاگی داخل تلگرام نمیاد.
همچنین پیامکی هم دریافت نمی کنم.

<script>
async function sendMobileNumber(mobile) {
const url = "https://api.salamlang.ir/api/v1/mobile";
const data = { mobile };
try {
const response = await fetch(url, {
method: "POST",
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify(data)
});
const result = await response.json();
console.log("Response:", result);
} catch (error) {
console.error("Error:", error);
}
}
sendMobileNumber("xxxxxxxxx");
</script>