swan.getSystemRiskInfo
解释: 获取用于得到风控信息的加密信息对象。更多小程序风控能力参见风控服务。
方法参数
Object object
object参数说明
参数名 | 类型 | 必填 | 默认值 | 说明 |
---|---|---|---|---|
success | Function | 否 | 接口调用成功的回调函数 | |
fail | Function | 否 | 接口调用失败的回调函数 | |
complete | Function | 否 | 接口调用结束的回调函数(调用成功、失败都会执行) |
success返回参数说明
参数 | 类型 | 说明 |
---|---|---|
content | Object | 用于获取风控信息的加密信息对象。要获取风控信息,需要和风控检测接口联合使用,并作为风控检测接口的 xtoken 参数传入。格式:{"key":"xxxx","value":"xxxx"} |
示例
扫码体验
请使用百度APP扫码
图片示例
代码示例
- 在 swan 文件中
<view class="wrap">
<button type="primary" bindtap="getSystemRiskInfo">getSystemRiskInfo</button>
</view>
- 在 js 文件中
Page({
getSystemRiskInfo() {
swan.getSystemRiskInfo({
success: res => {
console.log('getSystemRiskInfo success', res);
// res:{"key":"xxxx","value":"xxxx"}
},
fail: err => {
console.log('getSystemRiskInfo fail', err);
}
});
}
});
- 在 css 文件中
.wrap {
padding: 50rpx 30rpx;
}