getSystemInformation (v1.0)

Estimated reading time: 1 minute

这个API提供关于设备的一般信息。

语法

http://<Base URL>/system

认证级别

private

需求

params' Elements
Not necessary.
JSON Example
{
    "method": "getSystemInformation",
    "id": 33,
    "params": [],
    "version": "1.0"
}

反馈

result's Elements
由下列对组成的对象。
name type multiplicity default description
product string 1 设备类别。当前定义了以下值。
language string ? "" 设备语言代码,用ISO-639 alpha-3表示。默认值是“”,如果服务器设备无法发送此参数,则返回空字符串。
model string 1 产品名称。这在每个产品中必须是唯一的。实际值由每个产品定义,不在本文档的范围内。
serial string ? "" 分配给每个设备的序列号。 默认值是“”,如果服务器设备无法发送此参数,则返回空字符串。 实际值由每个产品定义,不在本文档的范围内。
macAddr string ? "" 以太网MAC地址。默认值是“”,如果服务器设备无法发送此参数,则返回空字符串。
name string 1 产品名称。这在每个类别中必须是唯一的。
generation string ? "" Represents the rough age and season of the device in the market. The parameter is composed of "[X].[Y].[Z]", where [X], [Y], and [Z] are strings each representing an integer, concatenated with periods "." in between.
This must be unique within each category. The default value is, "" and if the server device cannot send this parameter, an empty string is returned.
JSON Example
{
    "result": [{
        "generation": "5.0.1",
        "product": "TV",
        "serial": "1000001",
        "name": "BRAVIA",
        "language": "eng",
        "model": "FW-55BZ35F",
        "macAddr": "04:5D:4B:AD:6D:E1"
    }],
    "id": 33
}
Error Code
No additional error codes are defined. Refer to error code for common errors.

附录

反馈指导

  • BRAVIA商用显示为以下参数返回固定值。
名称
产品 “电视”
名称 “BRAVIA”
  • BRAVIA商用显示还扩展了ISO-639 alpha-3的“语言”功能。
  • “macAddr”存储活动nic的有效MAC地址。格式必须是“xx:xx:xx:xx:xx:xx”。在BRAVIA专业显示中,只有一个NIC是活动的。
  • 在get接口信息中,“generation”存储与interfaceVersion相同的值。
Last modified: 13 Feb 2019