CallbackHelper

YouDeveloper
ProblemLocalhost can't receive callbacks
Our solutionYou change callback urls in your code to the url we give. Our server will receive http post/get callbacks from external systems and send them to your telegram as a prepared curl. By copypasting it to your console you make your code to think the callback came from an external system
Bot nameCallbackHelperBot
callback helper description
Personal dataWe do not store them
Production?This helper is for developing. Don't use it in production. Although how?
You still don't understand
how it works?
What do you do when you need to send http request to your server? You can open a browser or run curl utility. It can be like this:
    curl -X POST -H 'Content-Length: 37'
      -H 'Content-Type: application/x-www-form-urlencoded'
      -d 'amount=55&description=for%0D%0Ayou'
      'http://localhost:8000/?payment_system=liqpay'
Our service constructs the request itself instead of you