问题描述
我准备将应用程序上传到iTunes连接,但应用程序加载程序一直停留在使用iTunes Store进行身份验证阶段,并且等待了将近一个小时。网络很好,我以前从未见过这个。有人遇到过这种问题吗?什么是解决方案?提前谢谢。
I was about to upload an app to iTunes connect,but the application loader has been stuck at the stage of "Authenticating with the iTunes Store" and pending for almost an hour.Network is fine and I have never seen this before.Has anybody encountered this kind of issue? what is the solution?thanks in advance.
推荐答案
我在防火墙后面遇到这个问题。
I had this problem when behind a firewall.
我通过编辑解决了这个问题:
I got around it by editing:
/Applications/Xcode.app/Contents/Applications/Application\ Loader.app/Contents/MacOS/itms/java/lib/net.properties
如果你没有在上面提到的路径中找到 net.properties
然后尝试,因为现在已经改变了。
If you do not find net.properties
in above mentioned path then try, as it is changed now.
/Applications/Xcode.app/Contents/Applications/Application\ Loader.app/Contents/itms/java/lib/net.properties
更改行:
# https.proxyPort=443
收件人:
https.proxyPort=80
这使应用程序可以使用HTTP端口进行HTTPS。在此之后立即工作。希望这可以帮助。
This enables the application to use the HTTP port for HTTPS. Worked straight away after this. Hope this helps.
这篇关于应用程序加载程序停留在“使用iTunes Store进行身份验证”阶段的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!