How to use BigQuery API from elixir code

How to use BigQuery from elixir code?

I would like to use the Big Query web API from elixir code. Although there is no elixir client SDK on the SDK page page

I will use the BigQuery API with the service account. To use the service account, I need to run "JWT encode" ...

Do you know a suitable elixir library for using the BigQuery API?

+4
source share
2 answers

BigQuery implements the traditional REST API. If no one has implemented it before, you must create it using the REST library.

REST for Elixir:

, OAUTH2 :

+3
+1

Source: https://habr.com/ru/post/1611354/


All Articles