
Product
Introducing Webhook Events for Pull Request Scans
Add real-time Socket webhook events to your workflows to automatically receive pull request scan results and security alerts 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 pull request scan results and security alerts in real time.
Research
The Socket Threat Research Team uncovered malicious NuGet packages typosquatting the popular Nethereum project to steal wallet keys.
Product
A single platform for static analysis, secrets detection, container scanning, and CVE checks—built on trusted open source tools, ready to run out of the box.