How can use bigquery streaming insertall from server to server without use oauth2 or using a permament key?
I need to insert about 20,000 rows per minute one-to-one. All the examples that I saw are using Google api client with oauth. On the other hand, in BigQuery API explorer:
(https://developers.google.com/bigquery/docs/reference/v2/tabledata/insertAll)
I saw this url POST:
https://www.googleapis.com/bigquery/v2/projects/projectId/datasets/datasetId/tables/tableId/insertAll?key=apikey
I can create a server key, but it returns a login required note. Is it possible to send a large amount of inserts without doing a request token for each insert? Note that I am using PHP.