React-Native bridge static library for WeChat SDK.
- iOS
- Android
$ npm install react-native-wechat --save
- Link
RCTWeChat
library from yournode_modules/react-native-wechat/ios
folder like its described here. Don't forget to add it to "Build Phases" of project. - Added the following libraries to your "Link Binary With Libraries":
- SystemConfiguration.framework
- CoreTelephony.framework
- libsqlite3.0
- libc++
- libz
- add
URL Schema
as your app id forURL type
inTargets - info
- for iOS 9 support, add
wechat
andweixin
intoLSApplicationQueriesSchemes
in 'Targets - info - Custom iOS Target Properties'
Note: Make sure you have these code in AppDelegate.m
to enable LinkingIOS
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url
sourceApplication:(NSString *)sourceApplication annotation:(id)annotation
{
return [RCTLinkingManager application:application openURL:url
sourceApplication:sourceApplication annotation:annotation];
}
## Android: Linking to your gradle Project
- Add following lines into `android/settings.gradle`
include ':RCTWeChat' project(':RCTWeChat').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-wechat/android')
- Add following lines into your `android/app/build.gradle` in section `dependencies`
... dependencies { ... compile project(':RCTWeChat') // Add this line only. }
- Add following lines into `MainActivity.java`
```java
...
import com.theweflex.react.WeChatPackage; // Add this line before public class MainActivity
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
...
mReactInstanceManager = ReactInstanceManager.builder()
.setApplication(getApplication())
.setBundleAssetName("index.android.bundle")
.setJSMainModuleName("index.android")
.addPackage(new MainReactPackage())
.addPackage(new WeChatPackage()) // Add this line
.setUseDeveloperSupport(BuildConfig.DEBUG)
.setInitialLifecycleState(LifecycleState.RESUMED)
.build();
}
}
- Create a package named 'wxapi' in your application package and a class named 'WXEntryActivity' in it. This is needed to get request and response from wechat.
package your.package.wxapi;
import android.app.Activity;
import android.os.Bundle;
import com.theweflex.react.WeChatModule;
public class WXEntryActivity extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
WeChatModule.handleIntent(getIntent());
finish();
}
}
- Add activity declare in your AndroidManifest.xml
<manifest>
...
<application>
...
<!-- 微信Activity -->
<activity
android:name=".wxapi.WXEntryActivity"
android:label="@string/app_name"
android:exported="true"
/>
</application>
</manifest>
- Add these lines to 'proguard-rules.pro':
-keep class com.tencent.mm.sdk.** {
*;
}
- {String}
appid
the appid you get from WeChat dashboard - returns {Promise}
Only available on iOS.
- {String}
appid
the appid you get from WeChat dashboard - {String}
appdesc
the description of your app - returns {Promise}
Check if wechat installed in this app.
- returns {Promise} Contain the result.
Check if wechat support open url.
- returns {Promise} Contain the result.
Get api version of WeChat SDK.
- returns {Promise} Contain the result.
Open WeChat app with an optional callback argument.
- returns {Promise}
Send authentication request.
- {Array|String}
scope
Scopes of auth request. - {String}
state
the state of OAuth2 - returns {Promise}
Share a message to timeline (朋友圈).
- {Object}
data
contain the message to send- {String}
thumbImage
Thumb image of the message, which can be a uri or a resource id. - {String}
type
Type of this message. Can be {news|text|image|video|audio|file} - {String}
webpageUrl
Required if type equalsnews
. The webpage link to share. - {String}
imageUrl
Provide a remote image if type equalsimage
. - {String}
videoUrl
Provide a remote video if type equalsvideo
. - {String}
musicUrl
Provide a remote music if type equalsaudio
. - {String}
filePath
Provide a local file if type equalsfile
.
- {String}
Similar to shareToTimeline
but send message to a friend or a groups.
Adds a listener to be invoked when events of the specified type are emitted. An optional calling context may be provided.
Return a object like {remove: function}
which can be used to remove this listener.
Similar to addListener, except that the listener is removed after it is invoked once.
Removes all of the registered listeners, including those registered as listener maps.
Receive result for sendAuthRequest - errCode {int} - errStr {String} Error message if any error occured. - openId {String} - code {String} Authorize code - url {String} - lang {String} - country {String}
Receive result for shareToTimeline and shareToSession - errCode {int} be 0 if auth successed. - errStr {String} Error message if any error occured.
For more details, visit WeChat SDK Documentation
- Yorkie Liu from WeFlex
- Deng Yun from React-Native-CN
MIT @ WeFlex,Inc