简体   繁体   English

使用端口443将iOS App上传到AppStore

[英]Upload iOS App to AppStore using port 443

I am trying to upload our apps from command line using altool. 我正在尝试使用altool从命令行上传我们的应用程序。 Since our firewall blocks some ports, I want to transfer the files in "DAV" mode using HTTPS on port 443. If I do that manually using ApplicationLoader GUI, I can set a parameter for that. 由于我们的防火墙阻止了一些端口,我想在端口443上使用HTTPS以“DAV”模式传输文件。如果我使用ApplicationLoader GUI手动执行,我可以为此设置参数。 Does anybody know the correct parameters for altool? 有人知道altool的正确参数吗?

The documentation does not mention anything about that. 文档中没有提到任何相关内容。 https://itunesconnect.apple.com/docs/UsingApplicationLoader.pdf https://itunesconnect.apple.com/docs/UsingApplicationLoader.pdf

Currently I am using the following command (which does not work, because altool can't access the Apple server on the default port): 目前我使用以下命令(这不起作用,因为altool无法访问默认端口上的Apple服务器):

altool --upload-app -f file -u username [-p password] 

Best regards 最好的祝福

Peter 彼得

This seems to be unofficial way as of today, we are able to transfer in DAV with setting UserDefaults key ITunesTransport for altool like following: 这似乎是非官方的方式,因为今天,我们能够在DAV中设置UserDefaults关键ITunesTransport进行转移,如下所示:

defaults write com.apple.itunes.altool ITunesTransport DAV

Or, directly append it as altool command line arguments like following: 或者,直接将其作为altool命令行参数附加,如下所示:

altool --upload-app -f file -u username [-p password] -ITunesTransport DAV

It is working with Xcode 10 in our firewall. 它正在我们的防火墙中使用Xcode 10。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在AppStore中上传iOS应用 - Upload iOS app in AppStore 我可以使用Xcode 9和macOS Mojave将应用程序上传到iOS AppStore吗? - Can I upload an app to the iOS AppStore using Xcode 9 and macOS Mojave? 如何使用7.3将应用上传到Appstore - How to upload app to appstore using 7.3 将 iOS 应用上传到 AppStore(上传到 App Store 时出错。) - Upload iOS app to AppStore (An error occurred uploading to the App Store.) 无法在Appstore中上传Adobe Air iOS应用 - Can't upload Adobe Air iOS app in Appstore 我可以拒绝我的应用程序,并发出一条警告,将其上传到iOS appstore吗? - Can i be reject my app with a one warning to upload to iOS appstore? Ionic 1项目以构建IOS应用并尝试将其上传到AppStore - Ionic 1 project to build IOS app and try to upload it appstore 使用其他配置文件将iOS应用提交到Appstore - Submitting an iOS app to appstore using a different provisioning profile 我们可以使用VMWare上安装的MacOS将应用发布到AppStore(iOS)吗? - Can we publish an app to AppStore (iOS) using MacOS installed on VMWare? 我们可以在 AppStore 上仅上传基于 UIWebview 的应用程序吗? ITUNES CONNECT 上的 IOS APP 与 UIWEBVIEW,这可以批准吗? [等候接听] - Can we Upload only UIWebview based app on AppStore? IOS APP on ITUNES CONNECT with a UIWEBVIEW, can this approved? [on hold]
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM