-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.js
41 lines (40 loc) · 1.31 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { NativeModules, Platform } from 'react-native';
export default class Wechat {
/**
* 向微信注册应用
* @param appid 通过微信开放平台,[获取appid](https://open.weixin.qq.com/)
* @param universalLink 参数在 iOS 中有效,Universal Link(通用链接)是苹果在 iOS9 推出的,一种能够方便的通过传统 HTTPS 链接来启动 APP 的功能,可以使用相同的网址打开网址和 APP。
*/
static registerApp(appid, universalLink = '') {
if (Platform.OS === 'ios') {
return NativeModules.RNWechat.registerApp(appid, universalLink);
}
if (Platform.OS === 'android') {
return NativeModules.RNWechat.registerApp(appid);
}
}
/**
* 检查微信是否已被用户安装
*/
static isWXAppInstalled() {
return NativeModules.RNWechat.isWXAppInstalled();
}
/**
* 判断当前微信的版本是否支持 OpenApi,支持返回 true,不支持返回 false
*/
static isWXAppSupportApi() {
return NativeModules.RNWechat.isWXAppSupportApi();
}
/**
* 打开微信,成功返回 true,不支持返回 失败返回 false
*/
static openWXApp() {
return NativeModules.RNWechat.openWXApp();
}
/**
* 获取当前微信SDK的版本号
*/
static getApiVersion() {
return NativeModules.RNWechat.getApiVersion();
}
}