为什么两个 get 请求没有更新 thingspeak 中的字段?

Why two get requests are not updating fields in thingspeak?

单个 运行 无法将两个或更多获取请求更新到我的 thingspeak 字段。 我的代码有一部分需要在一个 python 程序中更新两个字段。 喜欢..,

urlopen("https://api.thingspeak.com/update?api_key=D------MQV&field1=5")
urlopen("https://api.thingspeak.com/update?api_key=D------MQV&field2=10")

在上面的示例中,只有 field1 得到更新。 谢谢!

一次请求最多可以更新 8 个字段。

urlopen("https://api.thingspeak.com/update?api_key=D------MQV&field1=5&field2=10")

两次背靠背请求不起作用的原因是 ThingSpeak 在免费帐户上有 15-second rate limit