Trying to run this code:
bq_con <- dbConnect(
bigrquery::bigquery(),
project = "XXXXXXXX",
dataset = "XXXX",
billing = "XXXXXX"
)
Which runs just fine. But when I try:
dbWriteTable(bq_con,
name = "air_full",
value = air_full,
row.names = F,
append = F,
overwrite = T)
I get the normal bq_auth() call, and when I choose my username and password (which I know are correct - as I can login to Google BigQuery outside of the tidyverse process) and which worked fine last Sunday - I get this error:
Access blocked: Authorization Error
Please contact your district technology staff and inform them of this error.
If you are a developer of Tidyverse API Packages, see error details.
Error 400: admin_policy_enforced
Any ideas what might have happened?