Replies: 1 comment 4 replies
-
My R is a bit rusty, but can you confirm that this collection_token_url <- "https://planetarycomputer.microsoft.com/api/sas/v1/token/modis-13A1-061"
token <- httr::content(httr::GET(collection_token_url))[["token"]]
is roughly equivalent to
```bash
curl "https://planetarycomputer.microsoft.com/api/sas/v1/token/modis-13A1-061" and you were seeing a 403 error? At the moment, I'm getting an OK 200 response at that endpoint, so maybe try again? |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
We are experiencing an issue generating tokens for the
modis-13A1-061
collection.The
rstac
package uses the https://planetarycomputer.microsoft.com/api/sas/v1/token endpoint to sign the items in a collection.As shown in the example below, only the https://planetarycomputer.microsoft.com/api/sas/v1/sign endpoint is working:
Any idea what is going on?
Beta Was this translation helpful? Give feedback.
All reactions