Reputation: 181
I have tried to used postman for Express Checkout, but getting following error:
ACK=Failure&L_ERRORCODE0=81002&L_SHORTMESSAGE0=Unspecified%20Method&L_LONGMESSAGE0=Method%20Specified%20is%20not%20Supported&L_SEVERITYCODE0=Error
I read also few other answers but havent found out any solution.
Upvotes: 0
Views: 1130
Reputation: 398
You are inputting all the parameter and value under Headers
.
You should put all the parameters/values under Params
, located at the right side the URL endpoint field.
Upvotes: 2