Am using a simple script to geocode a dataframe of addresses in R using my organization's enterprise geocoding server, but am getting an error indicating that my request is being directed to the default ArcGIS World Geocode Server and the request fails. Code is below, and was working as recently as this past March. I am successfully generating a token and connecting to the enterprise geocode server, all metadata appears in my environment, but the `geocode_addresses()` job fails.
library(arcgisutils)
library(arcgisgeocode)
library(dplyr)
arcgis_token <- arcgisutils::auth_code() ## complete OAuth2 in browser, get code
print(arcgis_token) ## confirm correct
set_arc_token(arcgis_token) ## set token as default
test <- tribble(~name, ~addr, ~id,
"info", "for", "testaddresses")
gc <- geocode_server("<enterprise server address>")
results <- geocode_addresses(
single_line = test$addr,