2017-02-28 57 views
0

我在过去的一年中使用了postmates交付报价API,而且在我检查时它运行良好。Postmates API不起作用

但现在似乎不灵

它抛出一个异常,用一些使饼干和验证码的HTML文本

如果我失踪postmates

一些更新我无法理解

这里是我的编码

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(); 
      } 

回答