我正在尝试将这个curl命令转换成python POST请求。我是第一次调用api端点,这是我第一次遇到-F表单数据。我正在尝试复制的curl请求如下:
curl -X POST "https://genericurl.com/rest/endpoint" -H "accept: application/json" -H "Content-Type: multipart/form-data" -F "strictQuotes=" -F "escape=\"" -F "continueOnError=" -F "separator=;" -F "deleteFile=" -F "simulation=" -F "fileName=synchronization_file" -F "headerRow=" -F "ignoreLeadingWhitespace=" -F "sendNotification=" -F "fileId=" -F "template=" -F "saveResult=" -F "batchSize=1000" -F "file=@testSourceFile.csv;type=text/csv" -F "quote=\""
先谢谢你!
1条答案
按热度按时间2wnc66cl1#
有一个很好的工具可以帮助你轻松地将CURL转换成Python代码。你可以看看:
https://curlconverter.com/
此外,您所附加的CURL也会转换成类似以下的内容。