react-native-wechat
WeChat login, share, favorite and payment for React-Native on iOS and Android platforms.
React Native bridging library that integrates WeChat SDKs:
- [x] iOS SDK 1.7.2
- [x] Android SDK 221
And [react-native-wechat] has the following tracking data in open source world:
NPM | Dependency | Downloads | Build |
---|---|---|---|
[![NPM version][npm-image]][npm-url] | [![Dependency Status][david-image]][david-url] | [![Downloads][downloads-image]][downloads-url] | [![Build Status][travis-image]][travis-url] |
API Documentation
[react-native-wechat] exposes the promise-based, therefore you could use Promise
or async/await
to manage your dataflow.
registerApp(appid)
appid
{String} the appid you get from WeChat dashboard- returns {Boolean} explains if your application is registered done
This method should be called once globally.
registerAppWithDescription(appid, description)
appid
{String} the appid you get from WeChat dashboarddescription
{String} the description of your app- returns {Boolean} explains if your application is registered done
This method is only available on iOS.
isWXAppInstalled()
- returns {Boolean} if WeChat is installed.
Check if wechat installed in this app.
isWXAppSupportApi()
- returns {Boolean} Contain the result.
Check if wechat support open url.
getApiVersion()
- returns {String} Contain the result.
Get api version of WeChat SDK.
openWXApp()
- returns {Boolean}
Open the WeChat app from your application.
sendAuthRequest([scope[, state]])
scope
{Array|String} Scopes of auth request.state
{String} the state of OAuth2- returns {Object}
Send authentication request, and it returns an object with the
following fields:
field | type | description |
---|---|---|
errCode | Number | Error Code |
errStr | String | Error message if any error occurred |
openId | String | |
code | String | Authorization code |
url | String | The URL string |
lang | String | The user language |
country | String | The user country |
class ShareMetadata
type
{Number} type of this message. Can be {news|text|imageUrl|imageFile|imageResource|video|audio|file}thumbImage
{String} Thumb image of the message, which can be a uri or a resource id.description
{String} The description about the sharing.webpageUrl
{String} Required if type equalsnews
. The webpage link to share.imageUrl
{String} Provide a remote image if type equalsimage
.videoUrl
{String} Provide a remote video if type equalsvideo
.musicUrl
{String} Provide a remote music if type equalsaudio
.filePath
{String} Provide a local file if type equalsfile
.fileExtension
{String} Provide the file type if type equalsfile
.
shareToTimeline(message)
message
{ShareMetadata} This object saves the metadata for sharing- returns {Object}
Share a ShareMetadata
message to timeline(朋友圈) and returns:
name | type | description |
---|---|---|
errCode | Number | 0 if authorization successed |
errStr | String | Error message if any error occurred |
These example code need 'react-native-chat' and 'react-native-fs' plugin.
shareToSession(message)
message
{ShareMetadata} This object saves the metadata for sharing- returns {Object}
Similar to shareToTimeline
but send message to a friend or chat group.
pay(payload)
payload
{Object} the payment datapartnerId
{String} 商家向财付通申请的商家IDprepayId
{String} 预支付订单IDnonceStr
{String} 随机串timeStamp
{String} 时间戳package
{String} 商家根据财付通文档填写的数据和签名sign
{String} 商家根据微信开放平台文档对数据做的签名
- returns {Object}
Sends request for proceeding payment, then returns an object:
name | type | description |
---|---|---|
errCode | Number | 0 if authorization successed |
errStr | String | Error message if any error occurred |