When I investigated the cause of this, I noticed that it was blocked by ATS. I changed the info.plist code as follows but it didn't work.
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>poishogi.de</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
However, poishogi.de uses HTTPS, WSS communication, and the TLS version is 1.3, using X25519, AES_256_GCM. WSS is on the same server as HTTPS and running on the same port 443. I'm using HTTPS and WSS, but I find it strange that I have to register with NSExceptionDomains.
Do you know why something is rejected by ATS?