You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 26, 2020. It is now read-only.
I don't really think that your routes are comfortable to use, for example:
GET /request_payment/:expect/:currency/:message/:seller/:customer/:callback_url
When you build a wrapper, joining these parameters is very tricky process: you should always match values with position. Maybe they should be passed via query string?
The text was updated successfully, but these errors were encountered:
@Kotevode thanks for a suggestion! Perfectly valid point, but this is the default routing mechanism in Expressjs framework here.
If you can, please suggest an alternative.
I don't really think that your routes are comfortable to use, for example:
GET /request_payment/:expect/:currency/:message/:seller/:customer/:callback_url
When you build a wrapper, joining these parameters is very tricky process: you should always match values with position. Maybe they should be passed via query string?
The text was updated successfully, but these errors were encountered: