
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
react-native-ding-talk-share
Advanced tools
钉钉分享 react native 版 SDK
分享npm install react-native-ding-talk-share --save
react-native link react-native-ding-talk-share
package.json 中添加 "dt_app_id": "<your_ding_talk_app_id>",
首先在工程中创建 ddshare 的 package,然后在在该 package 下创建 DDShareActivity,内容如下
import android.app.Activity;
import android.os.Bundle;
import im.shimo.dingtalkshare.DingTalkShareModule;
public class DDShareActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
try {
DingTalkShareModule.handleIntent(getIntent());
} catch (Exception e) {
e.printStackTrace();
}
finish();
}
}
注意 package 名字,和 Activity 名字都不能改,因为钉钉是按名字去查找 Activity 的。
再在 AndroidManifest.xml 中添加如下内容:
<activity
android:exported="true"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:launchMode="singleInstance"
android:name=".ddshare.DDShareActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
</intent-filter>
</activity>
参考官方文档修改 LSApplicationQueriesSchemes 和 URL Types
General > Linked Frameworks and Libraries > 添加 node_modules/react-native-ding-talk-share/ios/DTShareKit.framework
Build Settings > Framework Search Paths > 添加 $(SRCROOT)/../node_modules/react-native-ding-talk-share/ios no recursive
import DingTalk from 'react-native-ding-talk-share';
// share web page
result = await DingTalk.shareWebPage(link, wechatURIProcess(thumb || icon), title, content);
// share image
result = await DingTalk.shareImage(image);
FAQs
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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.