Send binary data as application/octet-stream content type using swagger











up vote
0
down vote

favorite












I'm unable to send binary data as application/octet-stream content type.
Following is the information I have added to swagger_path



swagger_path :create do
post "/data"
tag "POST Data"
summary "POST data"
description "Send data"
consumes "application/octet-stream"
produces "application/octet-stream"
parameter :Body, :binaryData, :file, "The file to upload", required: true
response 200, "Ok"
response 400, "Bad request"
response 401, "Unauthorized"
end


When I upload a file and execute the command, I'm seeing following error



[info] module=Plug.Logger POST /data/
[info] module=Plug.Logger Sent 406 in 631µs
[debug] module=Plug.Debugger ** (Phoenix.NotAcceptableError) no supported media
type in accept header.
Expected one of ["octet-stream"] but got the following formats:
* "application/octet-stream" with extensions: ["bin", "lha", "lzh", "exe",
"class", "so", "dll", "img", "iso"]


Here is the curl command which I would like to generate



curl -X POST http://localhost:8000/data -H 'Content-Type: application/octet
stream' --data-binary @conn.dat









share|improve this question




























    up vote
    0
    down vote

    favorite












    I'm unable to send binary data as application/octet-stream content type.
    Following is the information I have added to swagger_path



    swagger_path :create do
    post "/data"
    tag "POST Data"
    summary "POST data"
    description "Send data"
    consumes "application/octet-stream"
    produces "application/octet-stream"
    parameter :Body, :binaryData, :file, "The file to upload", required: true
    response 200, "Ok"
    response 400, "Bad request"
    response 401, "Unauthorized"
    end


    When I upload a file and execute the command, I'm seeing following error



    [info] module=Plug.Logger POST /data/
    [info] module=Plug.Logger Sent 406 in 631µs
    [debug] module=Plug.Debugger ** (Phoenix.NotAcceptableError) no supported media
    type in accept header.
    Expected one of ["octet-stream"] but got the following formats:
    * "application/octet-stream" with extensions: ["bin", "lha", "lzh", "exe",
    "class", "so", "dll", "img", "iso"]


    Here is the curl command which I would like to generate



    curl -X POST http://localhost:8000/data -H 'Content-Type: application/octet
    stream' --data-binary @conn.dat









    share|improve this question


























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm unable to send binary data as application/octet-stream content type.
      Following is the information I have added to swagger_path



      swagger_path :create do
      post "/data"
      tag "POST Data"
      summary "POST data"
      description "Send data"
      consumes "application/octet-stream"
      produces "application/octet-stream"
      parameter :Body, :binaryData, :file, "The file to upload", required: true
      response 200, "Ok"
      response 400, "Bad request"
      response 401, "Unauthorized"
      end


      When I upload a file and execute the command, I'm seeing following error



      [info] module=Plug.Logger POST /data/
      [info] module=Plug.Logger Sent 406 in 631µs
      [debug] module=Plug.Debugger ** (Phoenix.NotAcceptableError) no supported media
      type in accept header.
      Expected one of ["octet-stream"] but got the following formats:
      * "application/octet-stream" with extensions: ["bin", "lha", "lzh", "exe",
      "class", "so", "dll", "img", "iso"]


      Here is the curl command which I would like to generate



      curl -X POST http://localhost:8000/data -H 'Content-Type: application/octet
      stream' --data-binary @conn.dat









      share|improve this question















      I'm unable to send binary data as application/octet-stream content type.
      Following is the information I have added to swagger_path



      swagger_path :create do
      post "/data"
      tag "POST Data"
      summary "POST data"
      description "Send data"
      consumes "application/octet-stream"
      produces "application/octet-stream"
      parameter :Body, :binaryData, :file, "The file to upload", required: true
      response 200, "Ok"
      response 400, "Bad request"
      response 401, "Unauthorized"
      end


      When I upload a file and execute the command, I'm seeing following error



      [info] module=Plug.Logger POST /data/
      [info] module=Plug.Logger Sent 406 in 631µs
      [debug] module=Plug.Debugger ** (Phoenix.NotAcceptableError) no supported media
      type in accept header.
      Expected one of ["octet-stream"] but got the following formats:
      * "application/octet-stream" with extensions: ["bin", "lha", "lzh", "exe",
      "class", "so", "dll", "img", "iso"]


      Here is the curl command which I would like to generate



      curl -X POST http://localhost:8000/data -H 'Content-Type: application/octet
      stream' --data-binary @conn.dat






      elixir swagger phoenix






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 9 at 17:05









      Paweł Obrok

      17.2k55960




      17.2k55960










      asked Nov 8 at 20:52









      Sheshank Kodam

      105211




      105211





























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53215958%2fsend-binary-data-as-application-octet-stream-content-type-using-swagger%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53215958%2fsend-binary-data-as-application-octet-stream-content-type-using-swagger%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          How to pass form data using jquery Ajax to insert data in database?

          National Museum of Racing and Hall of Fame

          Guess what letter conforming each word