skip to Main Content

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