fael.gabriel

fael.gabriel

Need to create a body for Tesla with duplicate map keys

Hey all,
I am using Tesla to make a POST request and I need to post a body with duplicate keys, like this map:

%{
  "id[]" => "1",
  "id[]" => "2",
  "id[]" => "3"
}

The problem is that when I try to create this map, it does not keep the duplicated keys id[], so how can I generate this kind of body with a list of duplicated keys?

What I have so far:
I have this map as input:

ids = %{
  "1" => "any-value",
  "2" => "any-value",
  "3" => "any-value"
}

and I am trying to convert that to this output to post as the body in Tesla:

%{
  "id[]" => "1",
  "id[]" => "2",
  "id[]" => "3"
}

with this code:

ids |> Enum.map(fn {id, _} -> %{"id[]" => id} end) |> Enum.reduce(&Map.merge/2)

but as I said this keeps only one id[] in the map, e.g: %{"id[]" => "1"}.

Does anyone have any thoughts on how can I achieve this?

Thanks in advance,
Rafael.

Most Liked

chulkilee

chulkilee

What’s the format of the body? Seems like you want application/x-www-form-urlencoded, so time to use Tesla.Middleware.FormUrlencoded, which uses URI.encode_query/1 under the hood.

    client = Tesla.client([
      {Tesla.Middleware.BaseUrl, "https://httpbin.org/"},
      Tesla.Middleware.EncodeFormUrlencoded,
      Tesla.Middleware.DecodeJson,
      Tesla.Middleware.Logger
    ])
    
    client |> Tesla.post("/post", [{"id[]", "1"},{"id[]", "2"}])

Output excerpt:

>>> REQUEST >>>
(no query)
content-type: application/x-www-form-urlencoded

id%5B%5D=1&id%5B%5D=2

<<< RESPONSE <<<

{
  "args": {},
  "data": "",
  "files": {},
  "form": {
    "id[]": [
      "1",
      "2"
    ]
  },
  "headers": {
    "Content-Length": "21",
    "Content-Type": "application/x-www-form-urlencoded",
    "Host": "httpbin.org",
  },
  "json": null,
  "url": "https://httpbin.org/post"
}

Please note

  • [] notation to take values into array is not a standard but just common convention. e.g. See Plug.Conn.Query
  • Elixir’s URI.decode_query returns a map, which is convenient but it’s wrong to use parse a string in urlencoded form, since WHATWG defines it as list of key/value, not map!

For that exact reason I wrote whatwg/lib/whatwg/url/www_form_urlencoded.ex at main · chulkilee/whatwg · GitHub a while ago.

Where Next?

Popular in Questions Top

mgjohns61585
Could someone help me? I’m making my first elixir program, number guessing game. I can’t figure out how to convert the user’s guess from ...
New
lessless
I believe there are people here who are dealing with CSV files import on the daily basis, and since Excel is a really popular tool there ...
New
stefanchrobot
What’s the safe way to decode a JSON string into a struct? I want to avoid calling String.to_atom. Jason.decode can give me a map with st...
New
minhajuddin
I have seen a lot of code which picks the first element from a list using Enum.at(0) instead of List.first. Is there a reason why people ...
New
vrod
I am using the Starship cross-shell prompt – it seems pretty nice, but I get some errors: [WARN] - (starship::utils): Executing command ...
New
vac
Hi, I’m quite new in Elixir and I’m trying to format a string to a PEM format. I have the certificate value like MIIDBTCCAe2...... and I...
New
aalberti333
As the title describes, I’m trying to run Enum.map() over a list of key/value pairs, where the value is a map. My data looks like this: ...
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
jay1
Why is it that the mnesia database isn’t the most preferred database for use in Elixir/Phoenix?
New
baxterw3b
Hi guys, i’m new in the Elixir world, and i have to say, that i love it! i’m having some problem to understand anonymous functions with ...
New

Other popular topics Top

sorentwo
Hello! tl;dr Announcing Oban, an Ecto based job processing library with a focus on reliability and historical observability. After spen...
985 42920 311
New
Harrisonl
We have an ECS cluster with 4 services, where each task joins a single cluster, via discovery ECS discovery service. Currently when I de...
New
Darmani72
If I have a post route which an argument: post /my_post_route/:my_param1, MyController.my_post_handler How would get the post params ...
New
danschultzer
None of the current solutions worked well for me, so I went ahead and built a user management system from scratch. This project took far...
548 29377 241
New
jerry
Good day to you all. I have been struggling to get a query involving like and ilike to work. Can anyone assist me on this, please? pro...
New
nobody
Hi! In PHP: $_SERVER[‘SERVER_ADDR’] - in Elixir? Searched the docs for ip address and the web, no good results. Thanks!
New
shijith.k
I am trying to start a new phoenix project with elixir 1.9, but mix phx.new does not work. It says that ** (Mix) The task "phx.new" could...
New
joaquinalcerro
Hi there, I am working with Ecto-Postgresql and I need to call all of the records from a specific table but the table has 40,000 records...
New
Brian
What is the proper way to load a module from a file in to IEX? In the python world, doing something like this pretty standard: from ....
New
WestKeys
Currently suffering from paralysis by [HTTP client] analysis. This is rather unusual in Elixirland as there tends to be consensus on the ...
New

We're in Beta

About us Mission Statement