我按照本教程设置spark-server
在本地使用 with Particle Photon
。按照指示设置完所有内容后,我设法从core
服务器控制台读取并显示以下消息:
Your server IP address is: 10.0.0.10
server started { host: 'localhost', port: 5683 }
Connection from: 10.0.0.9, connId: 1
on ready { coreID: 'xxxxxxxxxxxxxxxxxxxxxx',
ip: '10.0.0.9',
product_id: 6,
firmware_version: 65535,
cache_key: '_0' }
Core online!
但是当我尝试访问API
这样的(使用POSTMAN
)
GET http://10.0.0.10:8080/v1/devices
它返回一个状态 400,像这样
{
"code": 400,
"error": "invalid_request",
"error_description": "The access token was not found"
}
如何获取要与本地云一起使用的访问令牌?我尝试使用.json
文件夹内文件中存在的令牌.particle
,但它说令牌无效。我真的可以在这方面使用一些帮助。