We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to test an endpoint that accept a POST body of binary data. I am generating the binary data with a little erlang module:
<request subst="true"> <http url="/endpoint" method="POST" version="1.1" contents="%%binary_gen:generate%%"> <http_header name="authorization" value="bearer %%_token%%"/> </http> </request>
ebin/binary_gen.beam compiled from:
-module(binary_gen). -export([generate/1]). generate({_Pid, _DynData}) -> <<"mybinarydata">>.
but this request doesn't seem to be run. The three requests in the session before this request do run, however.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to test an endpoint that accept a POST body of binary data.
I am generating the binary data with a little erlang module:
ebin/binary_gen.beam compiled from:
but this request doesn't seem to be run. The three requests in the session before this request do run, however.
The text was updated successfully, but these errors were encountered: