0
我與嘗試的代碼是: -無法使用elixir進行HTTP Post請求?
response = HTTPotion.post(url, [body: "{channel: \"#bot\", username: \"watson\", text: \"test\"}"])
我得到的迴應是: -
%HTTPotion.Response{body: "invalid_payload",......, status_code: 400}
你做了一個帖子請求,它返回。問題在於服務器響應「不良請求」。您可能需要向服務器發送其他內容,但這不是elixir的問題,而是消息內容。 – tkowal
這是示例捲曲請求的工作原理: - curl -X POST url -d'{「channel」:「bot」,「username」:「ab」,「text」:「test」}' –
我想要的知道是知道發送請求中的數據參數 –