1

Heroku Add-on Attachment Scannerを使用して、ユーザーがアップロードするときに、アップロードされたドキュメントのウイルスをスキャンしようとしています。

Poison.encode を使用してファイルを直接エンコードしようとしていますが、エラーが発生するため、これが正しい方法かどうかわかりません。以下は、私が試みた HTTPoison 投稿リクエストと、Poison.encode! からのエラーです。

def scan do
    url = System.get_env("ATTACHMENT_SCANNER_URL") <> "/requests"
    token = System.get_env("ATTACHMENT_SCANNER_API_TOKEN")

    headers =
      [
        "Authorization": "bearer " <> token,
        "Content-Type": "multipart/form-data",
      ]

    file_path = local_path_to_pdf_file
    file = file_path |> File.read!

    body = Poison.encode!(%{file: file})

    res = HTTPoison.post(url, body, headers, recv_timeout: 40_000)
  end

Poison.encode(ファイル) エラー:

iex(3)> Poison.encode(file)
** (FunctionClauseError) no function clause matching in Poison.Encoder.BitString.chunk_size/3

    The following arguments were given to Poison.Encoder.BitString.chunk_size/3:

        # 1
        <<226, 227, 207, 211, 13, 10, 49, 48, 51, 32, 48, 32, 111, 98, 106, 13, 60, 60,
          47, 76, 105, 110, 101, 97, 114, 105, 122, 101, 100, 32, 49, 47, 76, 32, 50,
          53, 50, 53, 51, 52, 51, 47, 79, 32, 49, 48, 53, 47, 69, 32, ...>>

        # 2
        nil

        # 3
        1

ps。ファイルを直接送信する必要があり、イメージを公開してホストできないため、ドキュメントの node.js の例は機能しません。

4

2 に答える 2