theoks
I have this body for a request, which in Elixir is represented like this:
body = %{
password: "my\Password"
}
I use Poison.encode! to convert it to JSON and what it is being sent is this:
%HTTPoison.Request{
body: "{\"sftp_password\":"\myPassword\"}
}
If I try and escape it with a double backslash:
body = %{
password: "my\\Password"
}
this is what is being encoded and sent in the request:
%HTTPoison.Request{
body: "{\"sftp_password\":"\my\\\\Password\"}
}
I also tried to convert the string to a charlist and it just encodes the code points, not the actual characters.
Is there any way to encode just one backslash, or to put it more generally: how do I pass string literals when encoding with Poison or in Elixir in general?If your question is related to Phoenix or Nerves, please post it in the Phoenix or Nerves Questions / Help section. Thanks!
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
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
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
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
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
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
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
- #hex
- #security
- #metaprogramming










Showing Posts 9 to 1- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
You can treat
~S"foo\"exactly the way you can treat`foo\`in Go, except for the newlines.The 4 backslashes happend because of multiple layers of encoding/inspecting.
"{\"password\":\"my\\\\Password\"}"is the inspected result of the string that is returned byPoison.encode!/1.{"password":"my\\Password"}is what actually would be sent over the “wire”. Here the backslash is still doubled, because that is how JSON wants it to be.Nicd
I don’t understand this part. Looking at Swift’s docs, it has a similar string syntax to Elixir and also has backslash escapes, so you would need to write
"foo\\bar"to get a string that containsfoo\bar. Or am I mistaken?theoks
Thanks for the explanation. The 4 backslashes threw me off. It makes sense when I don’t think in terms of literals so I probably need to re-wire my Swift/Go brain
al2o3cr
Try this in your browser’s Javascript console:
From RFC 8259:
benwilson512
You don’t actually have one backslash in the original string. See:
Notice how the output is just
"myPassword". The backslash is gone there, it doesn’t have anything to do with Poison’s JSON encoding.\is itself the escape character in a string. If you want one in there literally, you need to escape it:Notably, if you’re reading in external text that has a slash, this will not be lost:
theoks
The problem I face is when I have one backslash, not two:
theoks
It still does not work with just a single backslash:
I am relatively new to Elixir I come from Swift and Go where there are string literals and I find it weird that there isn’t such a thing in Elixir.
I wonder how would one know where a backslash may occur during the lifetime of an app. Let’s say you have a user’s input with one backslash (eg a text field on a mobile app). Will I as the backend dev need to use the sigil in every field that accepts user input in case someone inserts a backslash somewhere?
LostKobrakai
body = %{password: ~S(my\Password)}and you don’t need to escape the backslash. Sigils can be wrapped by many different characters so unless you use all of them you should find one, which isn’t problematic: Syntax reference — Elixir v1.20.2fuelen
It is correctly encoded with double backslash and only one backslash is sent in request.
Multiple backslashes are used because both Elixir and JSON use them for escaping special characters.
This is just visual representation in terminal.
Last result is a JSON that will be sent to the server.