Я всегда сталкиваюсь с проблемой при вызове: GoogleApi.Firestore.V1beta1.Api.Projects.firestore_projects_databases_documents_run_query()
, как показано ниже.
Я уже пробовал разные входы и способы форматирования, а также разные коллекции Firestore.
{:ok, token} = Goth.Token.for_scope("https://www.googleapis.com/auth/cloud-platform")
conn = GoogleApi.Firestore.V1beta1.Connection.new(token.token)
query = %GoogleApi.Firestore.V1beta1.Model.RunQueryRequest{
structuredQuery: %{
:from => %{:collectionId => "demo"},
:limit => 1
}
}
GoogleApi.Firestore.V1beta1.Api.Projects.firestore_projects_databases_documents_run_query(
conn,
"projects/demo/databases/(default)/documents",
body: query
)
Результат:
** (BadMapError) expected a map, got: [%{"readTime" => "2019-04-07T20:23:48.219664Z"}]
(elixir) lib/map.ex:437: Map.get([%{"readTime" => "2019-04-07T20:23:48.219664Z"}], "document", nil)
lib/poison/decoder.ex:53: anonymous fn/3 in Poison.Decode.transform_struct/4
(stdlib) maps.erl:257: :maps.fold_1/3
lib/poison/decoder.ex:52: Poison.Decode.transform_struct/4
lib/poison.ex:70: Poison.decode/2