mmsc2
Hello I am trying to use the google api storage dependencies to create a a bucket in google storage, the problem is that i am not being able to do it because I get this error after ejecution the code
{:error,
%Tesla.Env{
__client__: %Tesla.Client{
adapter: nil,
fun: nil,
post: [],
pre: [
{Tesla.Middleware.Headers, :call,
[
[
{"authorization",
"Bearer .."}
]
]}
]
},
__module__: GoogleApi.Storage.V1.Connection,
body: "{\n \"error\": {\n \"code\": 400,\n \"message\": \"Required\",\n \"errors\": [\n {\n \"message\": \"Required\",\n \"domain\": \"global\",\n \"reason\": \"required\"\n }\n ]\n }\n}\n",
headers: [
{"cache-control", "no-cache, no-store, max-age=0, must-revalidate"},
{"date", "Tue, 11 Jan 2022 21:36:34 GMT"},
{"pragma", "no-cache"},
{"server", "UploadServer"},
{"vary", "Origin"},
{"content-length", "191"},
{"content-type", "application/json; charset=UTF-8"},
{"expires", "Mon, 01 Jan 1990 00:00:00 GMT"},
{"x-guploader-uploadid",
"ADPycdsDF1IdzxGu0SHK7w2m_TtakLOTSAp8SVkr6AeRWIw-2VutyCBr43BVH2PtTgLhQGB8_kz0_gOLwWIT8tJv1QFm84UXPw"},
{"alt-svc",
"h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000,h3-Q050=\":443\"; ma=2592000,h3-Q046=\":443\"; ma=2592000,h3-Q043=\":443\"; ma=2592000,quic=\":443\"; ma=2592000; v=\"46,43\""}
],
method: :post,
opts: [],
query: [project: "project_id"],
status: 400,
url: "https://storage.googleapis.com/storage/v1/b"
}}
that is not very descriptive of the problem. I am getting the token with Goth and creating a connection with that but still fails. I suspect it is related to the fact that i am not passing a name to the bucket but i can’t confirm it. the documentation is not very helpfull really. the code is the next one
def create_bucket() do
{:ok, token} = Goth.Token.for_scope("https://www.googleapis.com/auth/cloud-platform")
conn = GoogleApi.Storage.V1.Connection.new(token.token)
project_id = "project_Id"
{:ok, bucket} = Buckets.storage_buckets_insert(conn, project_id)
end
the project_id is a valid project name extracted from the generated keys of the project in google storage.
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex











Showing Posts 1 to 1- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
kartheek
Google storage docs say name is a required property in the request body. Buckets: insert | Cloud Storage | Google Cloud Documentation
Could you try passing name to it ?
You can play around with the api from web page itself using “Try this API” section.