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
I successfully used your bundle to implement payment features for my website but I will face soon an issue where I have to configure two different Paybox accounts.
In my case, I will have to redirect the user to an account to pay books, and another account to pay courses. But it looks like your bundle only handle one account.
lexik_paybox:
accounts:
books:
parameters:
production: false # Switches between Paybox test and production servers (preprod-tpe <> tpe)site: '9999998'# Site number provided by the bankrank: '98'# Rank number provided by the banklogin: '999999998'# Customer's login provided by Payboxhmac:
key: 'FEDCBA...43210'# Key used to compute the hmac hash, provided by Payboxcourses:
parameters:
production: false # Switches between Paybox test and production servers (preprod-tpe <> tpe)site: '9999999'# Site number provided by the bankrank: '99'# Rank number provided by the banklogin: '999999999'# Customer's login provided by Payboxhmac:
key: '01234...BCDEF'# Key used to compute the hmac hash, provided by Paybox
Any chance you would have any tips to implement this ? I will gracefully offer a pull request when finished ;)
Greetings,
I successfully used your bundle to implement payment features for my website but I will face soon an issue where I have to configure two different Paybox accounts.
In my case, I will have to redirect the user to an account to pay books, and another account to pay courses. But it looks like your bundle only handle one account.
I was thinking about implementing this as they did in CsaGuzzleBundle to use multiple guzzle clients.
Something like this :
Any chance you would have any tips to implement this ? I will gracefully offer a pull request when finished ;)
[EDIT] Related to #34
Regards,
Guillaume SARRAMEGNA