drift-bot / validating-data

example of how to validate incoming data from web app telegram bot to ensure that the data is come from telegram.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Contributors Forks Stargazers Issues MIT License


validating-data

project to validate telegram web app data.

Example · Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. Getting Started
  3. Usage
  4. Contributing
  5. License
  6. Contact

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.

(back to top)

Built With

(back to top)

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

  1. Clone the repo
    git clone https://github.com/OxMohsen/validating-data.git
  2. move to the directory
    cd validating-data
  3. Install composer packages
    composer install

Usage

  1. Enter your Bot Token in Config.php
    public const BOT_TOKEN = 'YOUR_BOT_TOKEN';
  2. 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.

(back to top)

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!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

(back to top)

License

Distributed under the MIT License. See LICENSE for more information.

(back to top)

Contact

Mohsen Falakedin - @oxmohsen - oxmohsen@oxmohsen.ir

Project Link: https://github.com/OxMohsen/validating-data

(back to top)

About

example of how to validate incoming data from web app telegram bot to ensure that the data is come from telegram.

License:MIT License


Languages

Language:JavaScript 49.4%Language:CSS 26.6%Language:HTML 20.1%Language:PHP 3.9%