# 分享

将一个地址发送到车机导航或在剧场中播放视频

# POST /api/1/vehicles/{id}/command/share

# Parameters

参数 例子 描述
type share_ext_content_raw 固定值
locale zh-CN ISO 639-1标准语言编码 (opens new window)
timestamp_ms 1539465730 unix时间戳,单位毫秒
value[android.intent.extra.TEXT] 123 Main St, City, ST 12345 地址或者视频URL

# 例子

{
  "type": "share_ext_content_raw",
  "value": {
    "android.intent.extra.TEXT": "123 Main St, City, ST 12345\n\nhttps://goo.gl/maps/X"
  },
  "locale": "en-US",
  "timestamp_ms": "1539465730"
}
1
2
3
4
5
6
7
8

# Response

{
  "reason": "",
  "result": true
}
1
2
3
4
最后更新: 11/29/2022, 6:37:15 AM