我尝试通过导入〉原始文本导入这个cURL例子到Postman:
curl https://invoice-generator.com \
-H "Accept-Language: fr-FR" \
-d from="Invoiced, Inc." \
-d to="Acme Corp." \
-d logo="https://invoiced.com/img/logo-invoice.png" \
-d number=1 \
-d currency=eur \
-d date="Feb 9, 2015" \
-d due_date="Feb 16, 2015" \
-d items[0][name]="Starter plan monthly" \
-d items[0][quantity]=1 \
-d items[0][unit_cost]=99 \
> invoice.pdf
(从此处截取)
但我收到一个错误:
导入 curl 时出错:e.startsWith不是函数
我已经看到了posts关于这个错误,而运行cURL在 Postman ,但显然这是一个不同的情况,我不知道如何解决这个问题?
1条答案
按热度按时间4ioopgfo1#
这个cURL命令的最后一行将输出导出到一个名为invoice.pdf的文件中。Postman不能做到这一点,至少不能以这种方式做到。
根据我的经验,Postman的cURL导入是不可靠的;确保你所有的引号都是双非弯引号,删除所有的's以及〉invoice.pdf,它可能会工作正常。