Awesome
<div id="top"></div> <!-- PROJECT LOGO --> <br /> <div align="center"> <h2 align="center">validating-data</h2> <p align="center"> project to validate telegram web app data. <br /> <br /> <a href="https://github.com/OxMohsen/validating-data/blob/main/example">Example</a> · <a href="https://github.com/OxMohsen/validating-data/issues">Report Bug</a> · <a href="https://github.com/OxMohsen/validating-data/issues">Request Feature</a> </p> </div> <!-- TABLE OF CONTENTS --> <details> <summary>Table of Contents</summary> <ol> <li> <a href="#about-the-project">About The Project</a> <ul> <li><a href="#built-with">Built With</a></li> </ul> </li> <li> <a href="#getting-started">Getting Started</a> <ul> <li><a href="#installation">Installation</a></li> </ul> </li> <li><a href="#usage">Usage</a></li> <li><a href="#contributing">Contributing</a></li> <li><a href="#license">License</a></li> <li><a href="#contact">Contact</a></li> </ol> </details> <!-- ABOUT THE PROJECT -->About The Project
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
.
Built With
<p align="right">(<a href="#top">back to top</a>)</p> <!-- GETTING STARTED -->Getting Started
These instructions will get you a copy of the project and show you how to use it. You'll need Git and composer
Installation
-
using composer
composer require oxmohsen/validating-data
-
install manually
- Clone the repo
git clone https://github.com/OxMohsen/validating-data.git
- move to the directory
cd validating-data
- Install composer packages
composer install
- Clone the repo
Usage
- load the project
require_once __DIR__ . '/vendor/autoload.php'; use OxMohsen\TgBot\Validate;
- use the Validate class to validate initData
if (Validate::isSafe($bot_token, $initData)) { echo 'valid data'; } else { echo 'invalid data'; }
you can also see a simple example in the example folder.
<p align="right">(<a href="#top">back to top</a>)</p> <!-- CONTRIBUTING -->Contributing
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
License
Distributed under the MIT License. See LICENSE
for more information.
Contact
Mohsen Falakedin - @oxmohsen - oxmohsen@oxmohsen.ir
Project Link: https://github.com/OxMohsen/validating-data
<p align="right">(<a href="#top">back to top</a>)</p> <!-- MARKDOWN LINKS & IMAGES -->