Postmates API不起作用



我在过去一年中使用邮递员送货报价API,到我检查时它的运行良好。

,但现在似乎不起作用

它正在用HTML文本带有一些启用cookie和Captcha

我不明白我是否缺少邮递员的一些更新

这是我的编码

HttpWebRequest req = WebRequest.Create(new Uri("https://api.postmates.com/v1/customers/" + PostmatesCustomerId + "/delivery_quotes")) as HttpWebRequest;
            req.Method = "POST";
            req.ContentType = "application/x-www-form-urlencoded";
            req.Headers.Add("Authorization", "Basic " + Base64string);             
            StringBuilder paramz = new StringBuilder();
            paramz.Append("pickup_address=" + PickUpAddress + "&dropoff_address=" + DeliveryAddress);
            byte[] formData =
                UTF8Encoding.UTF8.GetBytes(paramz.ToString());
            req.ContentLength = formData.Length;
            // Send the request:
            using (Stream post = req.GetRequestStream())
            {
                post.Write(formData, 0, formData.Length);
            }
            string responseString = null;
            using (HttpWebResponse resp = req.GetResponse()
                                          as HttpWebResponse)
            {
                StreamReader reader =
                    new StreamReader(resp.GetResponseStream());
                responseString = reader.ReadToEnd();
            }

如果您在美国以外,请尝试使用VPN作为解决方法进行测试。

相关内容

  • 没有找到相关文章

最新更新