app does not load information from the webserver IOS

After successfully build the ios installation the app does not load information from the webserver,in the build of the discontinued phonegap this problem did not occur the old ipa still works perfectly on ios 14

obs on I was unable to set information down in the build of the error path when I use these parameters in config.xml

<edit-config target = "* - Info.plist" parent = "NSAppTransportSecurity">
        <key> CFBundleURLTypes </key>
        <array>
            <dict>
                <key> CFBundleURLSchemes </key>
                <array>
                <string> URL_SCHEME </string>
                </array>
            </dict>
        </array>
        <key> NSAppTransportSecurity </key>
        <dict>
            <key> NSAllowsArbitraryLoads </key>
            <true />
            <key> NSExceptionDomains </key>
            <dict>
                <key> pagseguro.uol.com.br </key>
                <dict>
                    <key> NSIncludesSubdomains </key>
                    <false />
                    <key> NSExceptionAllowsInsecureHTTPLoads </key>
                    <false />
                    <key> NSExceptionRequiresForwardSecrecy </key>
                    <true />
                    <key> NSExceptionMinimumTLSVersion </key>
                    <string> TLSv1.2 </string>
                    <key> NSThirdPartyExceptionAllowsInsecureHTTPLoads </key>
                    <false />
                    <key> NSThirdPartyExceptionRequiresForwardSecrecy </key>
                    <true />
                    <key> NSThirdPartyExceptionMinimumTLSVersion </key>
                    <string> TLSv1.2 </string>
                    <key> NSRequiresCertificateTransparency </key>
                    <false />
                </dict>
            </dict>
        </dict>
    </edit-config>

Tip : If you’re pasting code, html or config files, surround the code with triple back ticks (```), before the first line and after the last one. It will be formatted properly.

I’ve never worked with <key> myself, but looking at Cordova’s docs, I’m not sure there should be spaces around the key value.
i.e.
Try changing

<key> CFBundleURLTypes </key>

to

<key>CFBundleURLTypes</key>

(for all of them)

hello
follow the print of my config.xml

Hello I have a lot of experience in building phonegap and cordova.
However I am not able to generate a functional build in your tool, problem only occurs on iOS.
what information do you need to help me solve this problem.
On android the build is perfect congratulations.

A lot has changed since PhoneGap last updated. Apple has made quite a few changes and updates, as well as new requirements.

Have you checked if there are any messages in the browser console?

Here are Tips for PhoneGap users - there might be an idea there, too.

On the server side, make sure your scripts are sending “Access-Control-Allow-Origin: *” in the HTTP header.

In PHP, I have this as the very first line of any server side script that communicates with my Cordova apps:

header("Access-Control-Allow-Origin: *");

Hello
With this header parameter (“Access-Control-Allow-Origin: *”); it worked in a single query, I put this all the other calls on the webserver, there would be some more solution