Restb.ai Watermark Detection

GRATIS CON POSSIBILITร€ DI UPGRADE
Da Restb.ai | Aggiornamento 4 days ago | Visual Recognition
Popolaritร 

9.6 / 10

Latenza

831ms

Livello di servizio

100%

Health Check

N/A

Torna a tutte le discussioni

Forbidden 403 error when making POST calls from R

Rapid account: Anthonypileggi
anthonypileggi
4 years ago

Iโ€™m trying to make API calls using the httr package in R, but it keeps returning a 403 error. Is there something obviously wrong with my API call?

R code I am using:

httr::POST(
  url = "https://rapidapi.com/restb/api/restb-ai-watermark-detection",
  config = httr::add_headers(
    `X-RapidAPI-Host` = "restb-ai-watermark-detection.p.rapidapi.com",
    `X-RapidAPI-Key` = Sys.getenv("RAPIDAPI_KEY"),
    `Content-Type` = "application/x-www-form-urlencoded"
  ),
  #query = list("rapidapi-key" = Sys.getenv("RAPIDAPI_KEY")),
  #httr::content_type("form"),
  body = list(image_url = "https://storage.googleapis.com/pbm-product-photos/03091_2.jpg")
  #encode = "form"
)

And the 403 response I keep getting:

Response [https://rapidapi.com/restb/api/restb-ai-watermark-detection?rapidapi-key={my_api_key}&image_url=https%3A%2F%2Fstorage.googleapis.com%2Fpbm-product-photos%2F03091_2.jpg]
  Date: 2020-06-25 21:28
  Status: 403
  Content-Type: text/html; charset=utf-8
  Size: 136 B
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Forbidden</pre>
</body>
</html>

Any help would be appreciated, I have 50k images I want to run this on ASAP. Thanks!

Rapid account: Anthonypileggi
anthonypileggi Commented 4 years ago

Awesome, this works perfectly! Thank you very much for the quick response!!

Rapid account: Restb
restb Commented 4 years ago

Hey Anthony,

Looking at your R code it looks like you are sending request headers (rapidapi-key) and body (image_url) as query parameters making not possible for RapidAPI to authenticate your request.

Also, it looks like the URL that you are using is not the correct one. You should use https://restb-ai-watermark-detection.p.rapidapi.com/wmdetect.

Taking a look at the getting started website from httr this, or something close to this, should work:

httr::POST(
  url = "https://restb-ai-watermark-detection.p.rapidapi.com/wmdetect",
  httr::add_headers(
    X-RapidAPI-Host = "restb-ai-watermark-detection.p.rapidapi.com",
    X-RapidAPI-Key = Sys.getenv("RAPIDAPI_KEY"),
    Content-Type = "application/x-www-form-urlencoded"
  ),
  body = list(image_url = "https://storage.googleapis.com/pbm-product-photos/03091_2.jpg"),
  encode = "form"
)

I hope this would help with your integration.

Partecipa alla discussione - aggiungi un commento di seguito:

Accedi/Iscriviti per pubblicare nuovi commenti