我连接到互联网,然后连接到VPN现在,我断开了互联网,并检查了我的应用程序中的网络连接状态,我正在连接到netinfo.谁能帮助我们知道如何才能知道,如果互联网是连接或没有当VPN连接?
mwg9r5ms1#
您可以使用此软件包https://github.com/kzlsnn/react-native-vpn-detect
import Security from "react-native-vpn-detect"; async function checkSecurity() { let detectVPN = await Security.detectVPN().then(response => { return response }); let detectProxy = await Security.detectProxy().then(response => { return response }); } checkSecurity();
1条答案
按热度按时间mwg9r5ms1#
您可以使用此软件包https://github.com/kzlsnn/react-native-vpn-detect