skip to Main Content

REST API Call from VB ( ZOHO CREATOR ) – Ebay API

Trying to make out this call https://www.zoho.com/creator/help/api/rest-api/rest-api-edit-records.html I did tried everything but seems i need basic knowledge. Can anyone give me directions what is wrong with my code Public Sub updateRecord(ByVal ht As Hashtable, ByVal criteriaField As String) Dim apiUrl…

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

Logging in to eBay using HttpWebRequest fails due to 'The browser you are using is rejecting cookies' response – Ebay API

I'm trying to log in to my eBay account using the following code: string signInURL = "https://signin.ebay.com/ws/eBayISAPI.dll?co_partnerid=2&siteid=0&UsingSSL=1"; string postData = String.Format("MfcISAPICommand=SignInWelcome&userid={0}&pass={1}", "username", "password"); string contentType = "application/x-www-form-urlencoded"; string method = "POST"; string userAgent = "Mozilla/5.0 (Windows; U; MSIE 7.0; Windows…

VIEW QUESTION
Back To Top
Search