我希望将cURL转换为JAVA代码。 cURL代码是工作但是我的java代码给了我 HTTP 403响应。
cURL代码如下:
WebDriverWait wait = new WebDriverWait(driver, 120);
wait.until(ExpectedConditions.elementToBeClickable(By.xpath(".//tr[1]/td[4]/div/button[contains(text(),'Kill')]")));
driver.findElement(By.xpath(".//tr[1]/td[4]/div/button[contains(text(),'Kill')]")).click();
Java代码如下:
curl -u 3d458af1-xxxx-xxxx-xxxx-bxxxx94c333:
-d "dropoff_address=20 McAllister St, San Francisco, CA 94102"
-d "pickup_address=101 Market St, San Francisco, CA 94105"
-X POST https://api.postmates.com/v1/customers/cus_xxxxxxx_yqV/delivery_quotes
有人可以帮我解决我犯错误的地方