gpt4 book ai didi

Windows curl 批处理文件

转载 作者:行者123 更新时间:2023-12-04 21:54:22 24 4
gpt4 key购买 nike

我想使用 Windows 批处理文件进行 mailgun curl 调用。由于 windows shell 不支持多行,如何在 windows 批处理文件中执行以下 curl 函数?

curl -s --user 'api:key-xxxxxxxxxx' \
https://api.mailgun.net/v3/sandboxbxxxxxxxxxxxxx.mailgun.org/messages \
-F from='user <email@gmail.com>' \
-F to='user <email@live.com>' \
-F subject='Hello' \
-F text='body!' \
-F attachment=@test.txt \

更新

当我在删除多行后尝试执行命令时,它返回了这个错误:
    curl -s --user 'api:key-xxxxxxxxxx' https://api.mailgun.net/v3/sandboxbxxxxxxxxxxxxx.mailgun.org/messages -F from='user  -F to='user  -F subject='Hello' -F text='body!' -F attachment=@test.txt 0<email@live.com 1>'
The system cannot find the file specified.

PS:附件文件在同一目录下

谢谢!

最佳答案

只需在一行上输入 <> " 之间的重定向字符或者用 ^ 逃避它:

curl -s --user 'api:key-xxxxxxxxxx' https://api.mailgun.net/v3/sandboxbxxxxxxxxxxxxx.mailgun.org/messages -F from="user <email@gmail.com>" -F to="user <email@live.com>" -F subject='Hello' -F text='body!' -F attachment=@test.txt

您还可以为每个元素创建变量:
set "$ApiKey=api:key-xxxxxxxxxx"
set "$Url=https://api.mailgun.net/v3/sandboxbxxxxxxxxxxxxx.mailgun.org/messages"
set "$From=email@gmail.com"
....

and then

curl -s --user '%$ApiKey%' %$Url% -F from="user <%$From%>" -F to= ....

关于Windows curl 批处理文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35491184/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com