I am trying to use my own generated app token to access the socrata
data, but I don't know why my app token is useless, and it always returns "forbidden 403"
and "error in getResponse()"
I checked the syntax for read.socrata()
function, and modify the the parameters but it still not works
api_url2004 <- "https://openpaymentsdata.cms.gov/resource/gysc-m9qm.csv?$$app_token = <token>"
query <- soql() %>%
soql_add_endpoint(api_url2004) %>%
soql_limit(2000)
token <- "<token>"
data <- read.socrata(query, app_token = token)
I would expect that I could successfully logged in and access to the dataset
, it now only displays 403 error