# iServiceSignature
获取iService签名,用于生成token
# 请求参数
| Prop | Type | Required | Default | Description |
|---|---|---|---|---|
timestamp | String | Y | - | 时间戳 |
# 参数代码示例
// 获取iService签名
const timestamp = Date.now().toString()
const signature = await this.$bridge.iServiceSignature(timestamp)
// signature 为签名字符串,失败返回空字符串
1
2
3
4
2
3
4
# 返回参数
- 返回签名字符串,失败返回空字符串