
Security News
Next.js moves to scheduled security releases
Vercel is formalizing a monthly release program for Next.js. The change follows React2Shell and a sharp rise in AI-assisted vulnerability discovery.
React Native的新浪微博登录分享插件
本仓库fork自reactnativecn/react-native-weibo,但源仓库许久没维护了,故本人针对react-native和weiboSDK新版做了适配后npm发布了新包rn-weibo。
npm install rn-weibo --save
react-native link
#####ios a.打开XCode's工程中, 右键点击Libraries文件夹 ➜ Add Files to <...> b.去node_modules ➜ react-native-weibo ➜ ios ➜ 选择 RCTWeiboAPI.xcodeproj c.在工程Build Phases ➜ Link Binary With Libraries中添加libRCTWeiboAPI.a
#####Android
// file: android/settings.gradle
...
include ':react-native-weibo'
project(':react-native-weibo').projectDir = new File(settingsDir, '../node_modules/react-native-weibo/android')
// file: android/app/build.gradle
...
dependencies {
...
compile project(':react-native-weibo')
}
android/app/src/main/java/<你的包名>/MainApplication.java中添加如下两行:
...
import cn.reactnative.modules.weibo.WeiboPackage; // 在public class MainApplication之前import
public class MainApplication extends Application implements ReactApplication {
private final ReactNativeHost mReactNativeHost = new ReactNativeHost(this) {
@Override
protected boolean getUseDeveloperSupport() {
return BuildConfig.DEBUG;
}
@Override
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new WeiboPackage(), // 然后添加这一行
new MainReactPackage()
);
}
};
@Override
public ReactNativeHost getReactNativeHost() {
return mReactNativeHost;
}
}
将node_modules/react-native-weibo/ios/libWeiboSDK/WeiboSDK.bundle加入到工程中(必须,很重要,不然登录的时候会crash)
在工程target的Build Phases->Link Binary with Libraries中加入libRCTWeiboAPI.a、libsqlite3.tbd、libz.tbd、ImageIO.framework、SystemConfiguration.framework、Security.framework、CoreTelephony.framework、CoreText.framework
在Info->URL Types 中增加QQ的scheme: Identifier 设置为sina, URL Schemes 设置为你注册的微博开发者账号中的APPID,需要加前缀wb,例如wb1915346979
在你工程的AppDelegate.m文件中添加如下代码:
#import "../Libraries/LinkingIOS/RCTLinkingManager.h"
- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation {
return [RCTLinkingManager application:application openURL:url sourceApplication:sourceApplication annotation:annotation];
}
由于iOS9的发布影响了微博SDK与应用的集成方式,为了确保好的应用体验,我们需要采取如下措施:
在iOS9系统中,默认需要为每次网络传输建立SSL。解决这个问题:
如果你需要用到微博的相关功能,如登陆,分享等。并且需要实现跳转到微博的功能,在iOS9系统中就需要在你的app的plist中添加下列键值对。否则在canOpenURL函数执行时,就会返回NO。了解详情请至https://developer.apple.com/videos/wwdc/2015/?id=703
在android/app/build.gradle里,defaultConfig栏目下添加如下代码:
manifestPlaceholders = [
WB_APPID: "微博的APPID" //在此修改微博APPID
]
如果react-native版本<0.18.0,确保你的MainActivity.java中有onActivityResult的实现:
private ReactInstanceManager mReactInstanceManager;
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data){
super.onActivityResult(requestCode, resultCode, data);
mReactInstanceManager.onActivityResult(requestCode, resultCode, data);
}
import * as WeiboAPI from 'react-native-weibo';
// 登录参数
config : {
scope: 权限设置, // 默认 'all'
redirectURI: 重定向地址, // 默认 'https://api.weibo.com/oauth2/default.html'(必须和sina微博开放平台中应用高级设置中的redirectURI设置的一致,不然会登录失败)
}
返回一个Promise对象。成功时的回调为一个类似这样的对象:
{
"accessToken": "2.005e3HMBzh7eFCca6a3854060GQFJf",
"userID": "1098604232"
"expirationDate": "1452884401084.538"
"refreshToken": "2.005e3HMBzh8eFC3db19a18bb00pvbp"
}
分享到微博
// 分享文字
{
type: 'text',
text: 文字内容,
}
// 分享图片
{
type: 'image',
text: 文字内容,
imageUrl: 图片地址
}
FAQs
The npm package rn-weibo receives a total of 1 weekly downloads. As such, rn-weibo popularity was classified as not popular.
We found that rn-weibo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Vercel is formalizing a monthly release program for Next.js. The change follows React2Shell and a sharp rise in AI-assisted vulnerability discovery.

Research
/Security News
11 malicious NuGet tools pose as game cheats to deploy Windows payloads, track hosts, and use Google Sheets for telemetry and control.

Research
/Security News
4 compromised asyncapi packages deliver miasma botnet loader on macOS, Linux and Windows.