i am trying to develop a plugin to receive payments through Paytm Payment Gateway. The following link is the documentation provided by Paytm for PG integration: https://developer.paytm.com/docs/js-checkout/?ref=jsCheckoutDoc
i have developed 3 Plugin actions in the plugin editor:
- Create Checksumhash
- Initiate Transaction
- JS Checkout
Create Checksumhash Action Code
Initiate Transaction Action code
JS Checkout Action code
“Create Checksumhash” Plugin Action which generates and validates a unique signature. This signature is passed to “Initiate Transaction” plugin action as a parameter which generates “Token” which will be used in “JS Checkout” plugin action which process it and displays the Paytm Checkout Page to accept payments from customers.
i am able to run and generate signature from “Create Checksumhash” Plugin action but i am not able to generate token from “Initiate Transaction” plugin action. i keep receiving the following error :
- “Warning : status bar still waiting on promise”
- “using plugin in testing mode can considerably slow down your application. You should only use test app to test plugins”
And the program is still running even after i have reloaded the page and trying to execute the same workflow. And how can create Test App??
I tried executing the code in Postman, it gave me results but its not working when i tried to execute in bubble plugin. Anyone please help me with this.