0

我按照教程设置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,但它说令牌无效。我真的可以在这方面使用一些帮助。

4

1 回答 1

0

您以前可以从控制台获取粒子云访问令牌,但他们删除了该选项,现在您必须通过 CLI 进行。https://docs.particle.io/reference/developer-tools/cli/#particle-token-list

于 2020-04-07T01:05:56.817 回答