Skip to content

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

@BaseMax

Description

@BaseMax

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

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

Image

<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>

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions