project to validate telegram web app data.
Example
·
Report Bug
·
Request Feature
Table of Contents
valid data | invalid data |
---|---|
php code for validating incoming data from telegram web app bot to ensure that the data is valid and comes from the telegram. in example folder you can see how to use this code by using ajax
and php
.
These instructions will get you a copy of the project and show you how to use it. You'll need Git and composer
- Clone the repo
git clone https://github.com/OxMohsen/validating-data.git
- move to the directory
cd validating-data
- Install composer packages
composer install
- Enter your Bot Token in
Config.php
public const BOT_TOKEN = 'YOUR_BOT_TOKEN';
- load the project and use the Validate class to validate data
<?php require_once 'vendor/autoload.php'; use OxMohsen\TgBot\Validate; if (Validate::isSafe($initData)) { echo 'valid data'; } else { echo 'invalid data'; }
you can also see a simple example in the example folder.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Mohsen Falakedin - @oxmohsen - oxmohsen@oxmohsen.ir
Project Link: https://github.com/OxMohsen/validating-data