gpt4 book ai didi

ios - 在没有 ssl 证书的情况下在 WebView 中打开 Https URL

转载 作者:行者123 更新时间:2023-11-29 11:34:19 26 4
gpt4 key购买 nike

我开始学习 React Native 并尝试制作简单的应用程序。我在 Java 上制作了服务器,在 React Native 上制作了 FE。现在我有一个问题。 React Native 中的 WebView 不会打开没有 ssl 证书的 Https URL。我做了一个 self 证书,但仍然是 NSURLErrorDomain -1202

是否可以关闭此通知?我无法制作受信任的证书,因为我没有主机并且只能在本地主机上部署我的应用程序。

screenshot

最佳答案

<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSAllowsArbitraryLoadsInWebContent</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>linkedin.com</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSExceptionRequiresForwardSecrecy</key>
<false/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
</dict>
</dict>

将此添加到您的 Info.plist 并代替 linkedin.com 提供您的 URL

关于ios - 在没有 ssl 证书的情况下在 WebView 中打开 Https URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50715333/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com