有人可以了解如何将来自REST API的数据合并到用Python编写的RPi上吗?有没有办法从远程服务器向RPi发送一些命令?对此有任何帮助将不胜感激。
答案 0 :(得分:1)
RPi正在使用rest API,所以你可以在python中使用urllib。
http://<ip of raspi>:3000/<pin>
示例:
from urllib.request import Request, urlopen
q = Request(url_with_get_parameters)
q.add_header('some_header_info', 'value' )
q.add_header('Content-type', 'application/json')
response = urlopen(q).read()
答案 1 :(得分:1)