react-native 0.61.2
react-native-wechat 1.9.12
复制代码
yarn add react-native-wechat
// rn 版本 < 0.60
react-native link react-native-wechat
// rn 版本 > 0.60
cd /ios/
pod install
复制代码
// WXEntryActivity.java
package com.xxx.wxapi;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import com.theweflex.react.WeChatModule;
import com.wechatusageexample.MainActivity;
public class WXEntryActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (MainActivity.isActivityCreated) {
WeChatModule.handleIntent(this.getIntent());
} else {
// 若是应用未在后台启动,就打开应用
Intent intent = new Intent(getApplicationContext(), MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(intent);
}
finish();
}
}
复制代码
// WXPayEntryActivity.java
package com.xxx.wxapi;
import android.app.Activity;
import android.os.Bundle;
import com.theweflex.react.WeChatModule;
public class WXPayEntryActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
WeChatModule.handleIntent(getIntent());
finish();
}
}
复制代码
<activity android:name=".wxapi.WXEntryActivity" android:label="@string/app_name" android:exported="true" />
<activity android:name=".wxapi.WXPayEntryActivity" android:label="@string/app_name" android:exported="true" />
复制代码
-keep class com.tencent.mm.sdk.** {
*;
}
复制代码
#Build Phases ➜ Link Binary With Libraries
SystemConfiguration.framework
CoreTelephony.framework
libsqlite3.0
libc++
libz
复制代码
#import <React/RCTLinkingManager.h>
#pragma mark - Handle URL
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
{
return [RCTLinkingManager application:application openURL:url
sourceApplication:sourceApplication annotation:annotation];
}
// ios 9.0+
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
options:(NSDictionary<NSString*, id> *)options
{
return [RCTLinkingManager application:application openURL:url options:options];
}
复制代码
配置白名单javascript
在 ios/Info.plist 添加java
<key>LSApplicationQueriesSchemes</key>
<array>
<string>weixin</string>
<string>wechat</string>
</array>
复制代码
{
"applinks": {
"apps": [],
"details": [
{
"appID": "8NL2H3YTL7.org.reactjs.native.example.dummpAppJacky",
"paths": [ "/download" ]
}
]
}
}
复制代码
const wxAppId = ""; // 微信开放平台注册的app id
const wxAppSecret = ""; // 微信开放平台注册获得的app secret
const wxMerchantId = ""; // 微信商户ID
const wxTransSecret = ""; // 商户api秘钥
复制代码
import * as WeChat from 'react-native-wechat';
WeChat.registerApp(wxAppId);
复制代码
wechatLogin() {
if (!this.state.isWXInstalled) {
this.showAlert('微信未安装');
return;
}
WeChat.sendAuthRequest('snsapi_userinfo', 'wechat_sdk_demo').then((response) => {
this.getOpenId(response.code);
}).catch((error) => {
let errorCode = Number(error.code);
if (errorCode === -2) {
this.showAlert('已取消受权登陆'); // errorCode = -2 表示用户主动取消的状况,下同
} else {
this.showAlert('微信受权登陆失败');
}
})
}
/// 获取openId
getOpenId(code) {
this.progressHUD.show();
let requestUrl = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=" + wxAppId + "&secret=" + wxAppSecret + "&code=" + code + "&grant_type=authorization_code";
fetch(requestUrl).then((response) => response.json()).then((json) => {
console.log('获取微信openid成功');
console.log(json);
this.getUnionId(json.access_token, json.openid);
}).catch((error) => {
this.progressHUD.hide();
this.showAlert('微信受权登陆失败');
})
}
getUnionId(accessToken, openId) {
let requestUrl = "https://api.weixin.qq.com/sns/userinfo?access_token=" + accessToken + "&openid=" + openId;
fetch(requestUrl).then((response) => response.json()).then((json) => {
console.log('获取微信unionid成功');
console.log(json);
// TODO: 这里openId和unionId都已经成功获取了,调用用户本身的接口传递openId或unionId登陆或注册
// put your login method here...
}).catch((error) => {
this.progressHUD.hide();
this.showAlert('微信受权登陆失败');
})
}
复制代码
// 分享到好友
shareToFriend() {
if (!this.state.isWXInstalled) {
this.showAlert('微信未安装');
return;
}
WeChat.shareToSession({
type:'news',
webpageUrl:'https://www.baidu.com',
title:'Test sharing',
description:'This is a test'
}).then((response) => {
console.log(response);
this.showAlert('分享成功');
}).catch((error) => {
let errorCode = Number(error.code);
if (errorCode === -2) {
this.showAlert('分享已取消');
} else {
this.showAlert('分享失败');
}
})
}
// 分享到朋友圈
shareToTimeline() {
if (!this.state.isWXInstalled) {
this.showAlert('微信未安装');
return;
}
WeChat.shareToTimeline({
type:'news',
webpageUrl:'https://www.baidu.com',
title:'Test sharing',
description:'This is a test'
}).then((response) => {
console.log(response);
this.showAlert('分享成功');
}).catch((error) => {
let errorCode = Number(error.code);
if (errorCode === -2) {
this.showAlert('分享已取消');
} else {
this.showAlert('分享失败');
}
})
}
复制代码
// 支付
wechatPay() {
if (!this.state.isWXInstalled) {
this.showAlert('微信未安装');
return;
}
/**************添加支付处理过程****************/
// 第一步,获取预订单prepayId,生成预订单最好让作后台接口的童鞋来完成,app端调用接口获取预订单
let prepayId = ""; // 这里预订单是从接口获取的,这里简写仅作演示
let tempTime = Date.parse(new Date());
let timestamp = (tempTime/1000).toString();
let nonce_str = MD5.hexMD5(timestamp);
// 第二步,拼装参数
let params = {
"appid": wxAppId,
"noncestr": nonce_str,
"package": "Sign=WXPay",
"partnerid": wxMerchantId,
"timestamp": timestamp,
"prepayid": prepayId,
};
let paramsList = [];
let sortedKeys = Object.keys(params).sort();
for (let i = 0; i < sortedKeys.length; i++) {
let keyValueCombo = sortedKeys[i] + "=" + params[sortedKeys[i]];
paramsList.push(keyValueCombo);
}
let paramsString = paramsList.join('&');
let finalString = paramsString + "&key=" + wxTransSecret;
let encryptedStr = MD5.hexMD5(finalString).toUpperCase(); // MD5加密后转为大写
// 第三步,调起微信客户端支付
WeChat.pay({
appId: wxAppId,
partnerId: wxMerchantId,
prepayId: prepayId,
nonceStr: nonce_str,
timeStamp: timestamp,
package: 'Sign=WXPay',
sign: encryptedStr
}).then((response) => {
console.log('支付成功');
console.log(response);
let errorCode = Number(response.errCode);
if (errorCode === 0) {
this.showAlert('支付成功');
// TODO: 这里处理支付成功后的业务逻辑,好比支付成功跳转页面、清空购物车。。。。
// .....
} else {
this.showAlert(response.errStr);
}
}).catch((error) => {
let errorCode = Number(error.code);
if (errorCode === -2) {
this.showAlert('已取消支付');
} else {
this.showAlert('支付失败');
}
});
}
复制代码