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've been successfully using this XeroBundle for over a year now, but have encountered an issue when recently updating this and guzzle. When trying to put a banktransaction into Xero I get the following 400 Bad Request:
response: oauth_problem=signature_method_rejected&oauth_problem_advice=Private applications must use the RSA-SHA1 signature
I've just spotted that pull request #7 submitted by @mradcliffe handles both this and the another issue I ran into with the trailing slash. Would be good to see that merged in.
I've been successfully using this XeroBundle for over a year now, but have encountered an issue when recently updating this and guzzle. When trying to put a banktransaction into Xero I get the following 400 Bad Request:
response: oauth_problem=signature_method_rejected&oauth_problem_advice=Private applications must use the RSA-SHA1 signature
After a bit of digging I came across this commit with Guzzle's oauth subscriber:
guzzle/oauth-subscriber@4736b9a
I see the you set the signature_method here, but I can't see it used anywhere.
Modifying the initialization of $middlewhere gets me up and running again:
Obviously that won't work for people with a passphrase set on their private key file, but its a step in the right direction.
The text was updated successfully, but these errors were encountered: