skip to Main Content

Node Js and Ebay api

I am novice to NodeJs and working with ebay-api. I found this great example at GitHub one strange issue is when I run the js file via CMD. it is working but sometimes it shows error and then I cleared…

VIEW QUESTION

eBay API SOAP call to GetOrders fails with 'Validation of the authentication token in API request failed'

I encounter an issue where I invoke eBay GetOrders API <faultstring>Auth token is invalid.</faultstring> <faultactor>http://www.ebay.com/ws/websvc/eBayAPI</faultactor> <detail> <FaultDetail> <ErrorCode>931</ErrorCode> <Severity>Error</Severity> <DetailedMessage>Validation of the authentication token in API request failed.</DetailedMessage> I am able to successfully get a token from eBay and refresh…

VIEW QUESTION

C# Ebay API Post-Order check_eligibility using HttpWebRequest

I'm trying to use the check_eligibility call from the eBay Post-Order API in C# very unsuccessfully. Every time I get a bad response. Here is one way I've tried: string url = "https://api.ebay.com/post-order/v2/cancellation/check_eligibility"; HttpWebRequest cancelOrderRequest = (HttpWebRequest)WebRequest.Create(url); cancelOrderRequest.Headers.Add("Authorization", "TOKEN "…

VIEW QUESTION
Back To Top
Search