Yes, I was able to download the private key from this URL but I was still unable to run the CocoaPods daemon :(
So I just opened your "cocoapods.cmd" and reverse-engineered what was needed.
What I did was manually name the downloaded key "cocoapods.key" and pasted it in the same directory that "cocoapods.cmd" exists. Then I reran the builder and encountered another curl error while trying to download the "cocoapods-11.3p1.img". I deducted the URL needed and again manually downloaded the image file and pasted saved it in the same directory as "cocoapods.cmd". Happily, these 2 were the only places in the script where curl is invoked :)
Then the daemon worked like a charm - downloaded the dependency stated in the Podfile:
pod 'OneSignalXCFramework', '3.12.3'
Still wondering why curl is failing and if it is a problem with my machine/installation. Keep in mind I have Linux tools installed for Windows as well as git bash and command line tools and whatnot.
Btw, very unrelated, but do you know if I can tell Unity to not include an App Extension when building the XCode project? I've updated my OneSignal plugin and now it adds their OneSignalNotificationServiceExtension that I don't need which requires signing and is just an overhead for me. I was fine without it till now and I would just like to not build anything related to it (thus not have it as a Tab in the project builder)
Ignore the last question - I was able to find out that the OneSignal plugin has a BuildPostProcessor.cs where they extend from "IPostprocessBuildWithReport" and they inject this AppExtension called "OneSignalNotificationServiceExtension". I think it should be an option in their plugin to opt out of this Extension but that is a topic for another day.
I was able to fight with this script (as it is Read-Only and gets reverted by Unity whenever it is edited) and disable the logic that injects the Extension. Now everything is working as expected! Thank you very much for the help! :)))
I will be glad if you want me to send additional info about the curl failing so we can debug it :)