-
Notifications
You must be signed in to change notification settings - Fork 5
Description
Hello, I have a problem using getTransactions call in Finances api.
These steps I follow is as follows:
1- I got my ebay token
2- I generate a public and private key using ebay api
3- I sign my signature with my private key
The format of my signature:
'"x-ebay-signature-key": {{ebay_signature_key}}\n'
'"@method": GET\n'
'"@path": /sell/finances/v1/transaction\n'
'"@authority": apiz.ebay.com\n'
'"@signature-params": ("x-ebay-signature-key" "@method" "@path" "@authority");created={{date}}\n'
4- I use ebay api explorer to test my call ( not programming language yet)
Authorization:Bearer {{token}}
X-EBAY-C-MARKETPLACE-ID:EBAY_DE
x-ebay-signature-key: {{signature_key}}
Signature: sig1=:{{signature_signed_with_private_key}}
Signature-Input: sig1=("x-ebay-signature-key" "@method" "@path" "@authority");created={{time_of_request}}
Accept:application/json
5- When I make this call, I got a signature validation error, if you can help me to solve this issue please.