oxmohsen/validating-data

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

Installs: 139

Dependents: 0

Suggesters: 0

Security: 0

Stars: 22

Watchers: 3

Forks: 3

Open Issues: 0

Language:JavaScript

v1.0.0 2022-08-22 18:45 UTC

This package is auto-updated.

Last update: 2024-04-22 22:29:45 UTC


README

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. using composer

    composer require oxmohsen/validating-data
  2. 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

Usage

  1. load the project
    require_once __DIR__ . '/vendor/autoload.php';
    
    use OxMohsen\TgBot\Validate;
  2. 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.

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