Hopefully a simple answer. I am trying to access the BigQuery API through the HTTP request node using a service account, but I do not know which Authorisation type to use:
Google’s Service Account authentication is a rather painful topic, so you might want to consider using the OAuth2 approach instead.
In the end you will send a token, but you would need to build the valid JWT token first as described here in Google’s docs. This is nothing n8n offers out of the box (you might want to raise a feature request for this though, and also leave a vote on this related request), so you would need to write this yourself I am afraid, for example using the Code node, then use it in your HTTP Request node.
n8n’s pre-built BigQuery node uses custom code for this.
Perhaps you can describe the Drive problems you are having? Are you trying to perform any operation not supported by the native BigQuery node or is there any other reason you are using the HTTP Request node over the BigQuery one?