
Product
Introducing Webhook Events for Alert Changes
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.
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.

Product
Add real-time Socket webhook events to your workflows to automatically receive software supply chain alert changes in real time.

Security News
ENISA has become a CVE Program Root, giving the EU a central authority for coordinating vulnerability reporting, disclosure, and cross-border response.

Product
Socket now scans OpenVSX extensions, giving teams early detection of risky behaviors, hidden capabilities, and supply chain threats in developer tools.