gpt4 book ai didi

rest - Applescript + REST?

转载 作者:行者123 更新时间:2023-12-01 02:49:32 25 4
gpt4 key购买 nike

AppleScript 是否有与 REST API 交互的方式?

我意识到我可以

do shell script curl

最佳答案

我会使用 curl

do shell script "#curl script here"

如果您需要帮助来获得正确的 curl 语句,我推荐 postman ,它确实帮助我生成正确的代码。但请记住,如果您有这些: "在前面放一个转义字符: \" .

因此,例如,如果我想做一个 POST 请求
https://api.widerstandsberechner.ch/api.php?firstcolor=red&secondcolor=orange&thirdcolor=yellow&fourthcolor=silver&hasFiveRings=0&resultInText=0

AppleScript 看起来像这样:
do shell script "curl -X POST -H \"Cache-Control: no-cache\" \"https://api.widerstandsberechner.ch/api.php?firstcolor=red&secondcolor=orange&thirdcolor=yellow&fourthcolor=silver&hasFiveRings=0&resultInText=0\""

当然,您可以轻松地将结果分配为一个值:
set res to do shell script "curl -X POST -H \"Cache-Control: no-cache\" \"https://api.widerstandsberechner.ch/api.php?firstcolor=red&secondcolor=orange&thirdcolor=yellow&fourthcolor=silver&hasFiveRings=0&resultInText=0\""

希望这可以帮助!

关于rest - Applescript + REST?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5998789/

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