validating-data icon indicating copy to clipboard operation
validating-data copied to clipboard

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

Results 1 validating-data issues
Sort by recently updated
recently updated
newest added

Currently `rawurldecode` called before splitting line by `&` ([here](https://github.com/OxMohsen/validating-data/blob/eff819746851e8abe08cbf122b24ccb0db89822b/src/Validate.php#L33)): ```php private static function convertInitData(string $initData): array { $initDataArray = explode('&', rawurldecode($initData)); $needle = 'hash='; $hash = ''; ``` But if...