Skip to content

JSAPI 概述

JSAPI 是面向网页应用提供的,基于 WPS 协作的网页开发工具包。点击下载最新包

开发者可调用 JSAPI 使用获取用户信息、选择媒体、地理位置等手机系统的能力,同时可以直接使用分享等 WPS 协作特有的能力,为用户提供更优质的网页体验。

使用注意事项:

  1. 所有接口都为异步;
  2. 所有接口必须在 window.ksoxz_sdk.ready(function () { ... }) 回调函数里调用;
  3. 成功的回调在 onSuccess、错误的回调 onError;
  4. onSuccess 是一个方法,里面会带出一些参数,比如{auth:boolean};
  5. onError 是一个方法,具体会有一些错误信息。
js
const onSuccess = (msg) => {};
const onError = (msg) => {};
window.ksoxz_sdk.ready(function () {
    window.ksoxz_sdk.authorize({params: { scope: 'xxx'}, onSuccess, onError});
});
分类名称描述iOSAndroidPC链接
基础config用于对使用到的网页应用JSAPI进行鉴权。>=3.10.0>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/base/config.html
基础authorize用于向用户发出授权请求。>=1.27.0>=1.27.0>=1.27.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/base/authorize.html
基础canIUse用于判断接口是否可以在当前客户端版本运行。>=2.3.0>=2.3.0>=2.3.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/base/canIUse.html
业务开放接口-登录requestAccess应用请求访问权限,用于请求登录授权码实现单点登录等场景。>=5.18.0>=5.18.0>=5.18.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/business/login/requestAccess.html
业务开放接口-用户信息getUserInfo用于获取当前登录用户的用户信息。>=5.8.0>=5.8.0>=5.8.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/business/user-info/getUserInfo.html
业务开放接口-用户信息enterProfile用于打开用户名片。>=5.24.0>=5.24.0>=5.24.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/business/user-info/enterProfile.html
业务开放接口-聊天与通讯录createGroupChat调用该接口进入创建群聊流程。>=5.24.0>=5.24.0>=5.24.0
业务开放接口-聊天与通讯录chooseGroupMember群成员选择器。>=5.24.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/business/contact/chooseGroupMember.html
业务开放接口-聊天与通讯录chooseChat打开用户会话列表的选择会话。>=5.24.0>=5.24.0>=5.24.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/business/contact/chooseChat.html
业务开放接口-聊天与通讯录chooseContact打开联系人选择器,可以选择用户或部门,并返回选择的用户和部门信息。>=2.7.0>=2.7.0>=2.7.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/business/contact/chooseContact.html
业务开放接口-应用信息openSetting打开设置页面,展示用户设置(包括授予和拒绝)过的权限,关闭页面后返回用户设置过的授权结果。>=5.24.0>=5.24.0>=5.24.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/business/setting/openSetting.html
业务开放接口-应用信息getSetting用于获取用户设置(包括授予和拒绝)过的权限列表数据。>=5.24.0>=5.24.0>=5.24.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/business/setting/getSetting.html
业务开放接口-应用信息getWebAppInfo获取当前网页应用信息。>=2.35.0>=2.35.0>=2.35.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/business/setting/getWebAppInfo.html
业务开放接口-分享shareMessage分享内容到第三方应用。>=4.25.0>=4.25.0>=4.25.0
业务开放接口-自定义业务invokeCustomAPI执行自定义JSAPI,该接口适用在移动端集成协作中台SDK或插件定制场景,用于拓展自定义JSAPI。>=5.20.0>=5.20.0>=5.20.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/business/custom/invokeCustomAPI.html
业务开放接口-自定义业务launchNativeApp用于唤起原生应用。>=5.20.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/business/custom/launchNativeApp.html
界面-导航栏setSidebarButton侧边栏导航自定义按钮。>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/navigation/setSidebarButton.html
界面-导航栏closeNavBar隐藏导航栏。>=5.24.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/navigation/closeNavBar.html
界面-导航栏configureMenu自定义底部工具菜单条目。>=3.10.0>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/navigation/configureMenu.html
界面-导航栏hideMenuItems设置隐藏底部工具菜单的Items。>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/navigation/hideMenuItems.html
界面-导航栏showMenuItems设置底部工具菜单的Items展示。>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/navigation/showMenuItems.html
界面-导航栏setNavigationButton自定义导航栏左侧按钮。>=3.10.0>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/navigation/setNavigationButton.html
界面-导航栏setNavigationBarColor设置导航栏颜色。>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/navigation/setNavigationBarColor.html
界面-导航栏setNavBarTitle用于设置导航栏标题。>=3.10.0>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/navigation/setNavBarTitle.html
界面-交互反馈showActionSheet用于显示操作菜单。>=2.15.0>=2.15.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/notification/showActionSheet.html
界面-交互反馈showPrompt展示可输入内容的弹窗。>=2.15.0>=2.15.0>=2.15.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/notification/showPrompt.html
界面-交互反馈hidePreloader隐藏加载弹窗。>=2.15.0>=2.15.0
界面-交互反馈showPreloader显示加载弹窗。>=2.15.0>=2.15.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/notification/showPreloader.html
界面-交互反馈showToast显示提示弹窗。>=2.15.0>=2.15.0>=2.15.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/notification/showToast.html
界面-交互反馈showConfirm显示确认框。>=2.15.0>=2.15.0>=2.15.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/notification/showConfirm.html
界面-交互反馈showAlert显示提醒弹窗。>=2.15.0>=2.15.0>=2.15.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/notification/showAlert.html
界面-页面操作closeSidebar收起侧边面板。>=5.24.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/page/closeSidebar.html
界面-页面操作closeApp用于关闭网页应用。>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/page/closeApp.html
界面-页面操作closeWeb关闭当前web容器。>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/page/closeWeb.html
界面-页面操作openUrl打开网页。>=2.0.0>=2.0.0>=2.0.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/page/openUrl.html
界面-页面操作rotateScreenView旋转屏幕。>=4.15.0>=4.15.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/interface/page/rotateScreenView.html
设备-系统信息getDeviceInfo获取当前设备信息。>=2.3.0>=2.3.0>=2.3.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/system/getDeviceInfo.html
设备-系统信息getAppInfo获取当前客户端信息。>=2.35.0>=2.35.0>=2.35.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/system/getAppInfo.html
设备-系统信息setAppInfoListener监听客户端信息变化用于监听应用信息设置变更,如大字体设置变更。>=4.20.0>=4.20.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/system/setAppInfoListener.html
设备-系统信息removeAppInfoListener取消监听客户端信息变化。>=4.20.0>=4.20.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/system/removeAppInfoListener.html
设备-扫码scan调起相机扫描一维码、二维码并返回扫描结果。>=2.7.0>=2.7.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/scan/scan.html
设备-wifigetConnectedWifi获取设备当前所连接的 Wi-Fi。>=4.16.0>=4.16.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/wifi/getConnectedWifi.html
设备-wifigetWifiStatus获取 WI-FI 开关状态。>=4.16.0>=4.16.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/wifi/getWifiStatus.html
设备-wifigetWifiList获取 Wi-Fi 列表。>=4.16.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/wifi/getWifiList.html
设备-wifionGetWifiList监听获取到 Wi-Fi 列表数据事件。>=4.16.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/wifi/onGetWifiList.html
设备-wifioffGetWifiList取消监听获取到 Wi-Fi 列表数据事件。>=4.16.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/wifi/offGetWifiList.html
设备-网络状态getNetworkType获取设备当前所处的网络类型。>=4.16.0>=4.16.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/network/getNetworkType.html
设备-网络状态setNetworkListener监听网络状态变化。>=3.10.0>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/network/setNetworkListener.html
设备-网络状态removeNetworkListener取消监听网络状态变化。>=3.10.0>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/network/removeNetworkListener.html
设备-网络状态getNetworkQualityType获取当前设备所处的网络质量评级。>=3.10.0>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/network/getNetworkQualityType.html
设备-网络状态setNetworkQualityChange监听网络质量变化。>=3.10.0>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/network/setNetworkQualityChange.html
设备-网络状态removeNetworkQualityChange取消监听网络质量评级变化。>=3.10.0>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/network/removeNetworkQualityChange.html
设备-通用蓝牙getBluetoothAdapterState获取蓝牙适配器状态。>=5.19.0>=5.19.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/classic/getBluetoothAdapterState.html
设备-通用蓝牙openBluetoothAdapter初始化蓝牙模块。>=5.19.0>=5.19.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/classic/openBluetoothAdapter.html
设备-通用蓝牙closeBluetoothAdapter关闭蓝牙模块。>=5.19.0>=5.19.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/classic/closeBluetoothAdapter.html
设备-通用蓝牙getBluetoothDevices获取全部已发现蓝牙设备。>=5.19.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/classic/getBluetoothDevices.html
设备-通用蓝牙startBluetoothDevicesDiscovery查找附近蓝牙设备。>=5.19.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/classic/startBluetoothDevicesDiscovery.html
设备-通用蓝牙stopBluetoothDevicesDiscovery停止查找附近蓝牙设备。>=5.19.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/classic/stopBluetoothDevicesDiscovery.html
设备-通用蓝牙onBluetoothDeviceFound监听寻找新蓝牙设备。>=5.19.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/classic/onBluetoothDeviceFound.html
设备-通用蓝牙offBluetoothDeviceFound取消监听寻找新蓝牙设备。>=5.19.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/classic/offBluetoothDeviceFound.html
设备-通用蓝牙getConnectedBluetoothDevices获取已处于连接状态的蓝牙设备。>=5.19.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/classic/getConnectedBluetoothDevices.html
设备-通用蓝牙onBluetoothAdapterStateChange监听蓝牙适配器状态变化。>=5.19.0>=5.19.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/classic/onBluetoothAdapterStateChange.html
设备-通用蓝牙offBluetoothAdapterStateChange取消监听蓝牙适配器状态变化。>=5.19.0>=5.19.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/classic/offBluetoothAdapterStateChange.html
设备-低功耗蓝牙setBLEMTU设置蓝牙最大传输单元。>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/low-energy/setBLEMTU.html
设备-低功耗蓝牙connectBLEDevice低功耗蓝牙连接外围设备。>=5.23.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/low-energy/connectBLEDevice.html
设备-低功耗蓝牙disconnectBLEDevice断开蓝牙设备连接。>=5.23.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/low-energy/disconnectBLEDevice.html
设备-低功耗蓝牙onBLEConnectionStateChange监听蓝牙连接状态变化。>=5.23.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/low-energy/onBLEConnectionStateChange.html
设备-低功耗蓝牙offBLEConnectionStateChange取消监听蓝牙连接状态变化。>=5.23.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/low-energy/offBLEConnectionStateChange.html
设备-低功耗蓝牙getBLEDeviceServices低功耗蓝牙获取设备服务。>=5.23.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/low-energy/getBLEDeviceServices.html
设备-低功耗蓝牙getBLEDeviceCharacteristics获取读写特征。>=5.23.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/low-energy/getBLEDeviceCharacteristics.html
设备-低功耗蓝牙notifyBLECharacteristicValueChange设置启用特征订阅。>=5.23.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/low-energy/notifyBLECharacteristicValueChange.html
设备-低功耗蓝牙onBLECharacteristicValueChange监听特征值变化。>=5.23.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/low-energy/onBLECharacteristicValueChange.html
设备-低功耗蓝牙offBLECharacteristicValueChange取消监听特征值变化。>=5.23.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/low-energy/offBLECharacteristicValueChange.html
设备-低功耗蓝牙readBLECharacteristicValue读取蓝牙接口数据。>=5.23.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/low-energy/readBLECharacteristicValue.html
设备-低功耗蓝牙writeBLECharacteristicValue写入蓝牙数据。>=5.23.0>=5.23.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/low-energy/writeBLECharacteristicValue.html
设备-蓝牙信标startBeaconDiscovery用于开始搜索附近的 Beacon 设备。>=5.25.0>=5.25.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/beacon/startBeaconDiscovery.html
设备-蓝牙信标stopBeaconDiscovery停止搜索附近的 Beacon 设备.。>=5.25.0>=5.25.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/beacon/stopBeaconDiscovery.html
设备-蓝牙信标getBeacons用于获取所有已搜索到的 Beacon 设备。>=5.24.0>=5.24.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/beacon/getBeacons.html
设备-蓝牙信标onBeaconUpdate监听 Beacon 设备更新事件,仅能注册一个监听。>=5.25.0>=5.25.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/beacon/onBeaconUpdate.html
设备-蓝牙信标offBeaconUpdate取消监听 Beacon 设备更新事件。>=5.25.0>=5.25.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/beacon/offBeaconUpdate.html
设备-蓝牙信标onBeaconServiceChange监听 Beacon 服务状态变化事件,仅能注册一个监听。>=5.24.0>=5.24.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/beacon/onBeaconServiceChange.html
设备-蓝牙信标offBeaconServiceChange取消监听 Beacon 服务状态变化事件。>=5.25.0>=5.25.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/beacon/offBeaconServiceChange.html
设备-剪贴板setClipboard设置系统粘贴板数据。>=2.7.0>=2.7.0>=2.7.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/clipboard/setClipboard.html
设备-剪贴板getClipboard获取系统粘贴板数据。https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/clipboard/getClipboard.html
设备-键盘keyboard隐藏iOS键盘默认工具栏。>=5.1.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/keyboard/keyboard.html
设备-截屏监听setScreenShotListener设置截图监听。>=3.14.0>=3.14.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/screenshot/setScreenShotListener.html
设备-截屏监听removeScreenShotListener移除截图监听。>=3.14.0>=3.14.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/screenshot/removeScreenShotListener.html
设备-拨打电话makePhoneCall拨打电话。>=2.7.0>=2.7.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/phone/makePhoneCall.html
设备-摇一摇accelerometerWatchShake调用该方法启动加速度计“摇一摇”监听。>=2.7.0>=2.7.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/shake/accelerometerWatchShake.html
设备-摇一摇accelerometerClearShake调用该方法停止加速度计“摇一摇”监听。>=2.7.0>=2.7.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/shake/accelerometerClearShake.html
设备-运动与健康getStepCount获取运动步数。>=5.12.0>=5.12.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/device/health/getStepCount.html
文件chooseFile选择本地文件。>=2.15.0>=2.15.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/file/chooseFile.html
文件previewFile预览文件。>=2.0.0>=2.0.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/file/previewFile.html
媒体-图片chooseImage从系统相册中选择图片,或使用来自相机拍摄的图片。>=3.0.0>=3.0.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/media/image/chooseImage.html
媒体-图片previewImage用于预览图片。>=2.0.0>=2.0.0>=2.0.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/media/image/previewImage.html
媒体-图片getImageBase64获取图片base64,仅iOS端支持。>=2.15.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/media/image/getImageBase64.html
媒体-图片getImageInfo获取图片信息。>=5.24.0>=5.24.0>=5.24.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/media/image/getImageInfo.html
媒体-图片compressImage压缩图片。>=5.24.0>=5.24.0>=5.24.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/media/image/compressImage.html
媒体-图片saveImageToAlbum保存图片到本地相册。>=3.10.0>=3.10.0https://365.kdocs.cn/3rd/open/documents/app-integration-dev/wps365/client/web-jsapi/media/image/saveImageToAlbum.html