上传app时一直显示发送API给AppStore

反正我是解决了好久,最后在stack overflow上找到了解决方法,外国人就是很认真。

As I felt a serious issue on this. I believe this answer will might be helpful.

After work around 10-12 hours on it and as everything else regarding my project and coding was fine enough, It becomes a headache for me. But after getting some valuable comment from some of the user of stack-overflow and after done some more googling I have found some quality answer.

The answer help me the most:

application loader stuck at the stage of "Authenticating with the iTunes Store"

If you are going to upload it through Application Loader and it stuck on the "Authentication with the iTunes Store..."

or

You are going to upload it through XCode and it stuck on “Your application is being uploaded”

Then just keep your head cool and check this first method:

  • Check your firewall protection is off. If not then make it off. Otherwise it can block you to connect your computer with iTunes Store.
  • Try a different internet connection. You might find that there is a port that Apple uses that is blocked.

If it doesn‘t not help you then follow the second method:

Xcode needs java runtime for uploading your apps to the App Store.

enter ‘java -version‘ in the terminal, java version should be 1.6 .if not download lastes compatible java only from apple download center: http://support.apple.com/kb/DL1572?viewlocale=en_US

If it doesn‘t not help you then follow the third method:

  • This enables the application loader to use the HTTP port for HTTPS. Go to Application Loader java folder : /Applications/Xcode.app/Contents/Applications/Application Loader.app/Contents/MacOS/itms/java/lib
  • Open net.properties file using text mate application
  • Change this particuler line : #https.proxyPort=443 proxy port to https.proxyPort=80
  • Save the file. And that‘s it. You can upload your binary file to App store easily now.

If it also doesn‘t not help you then follow the fourth method: Regenerate your certificate

  • Goto iOS developer portal (https://developer.apple.com/membercenter).
  • Remove current certificate, used by your App for signing.
  • Revoke your distribution certificate download it to your mac.
  • Install it.
  • Remove current "iOS distribution provision profile" from Developer portal.
  • Regenerate "iOS distribution provision profile" for app store distribution and download to mac.
  • Install it.
  • Try again using xcode/application loader to upload the build.
时间: 2024-10-13 03:54:36

上传app时一直显示发送API给AppStore的相关文章

上传App时遇IDFA错误问题

今天上传App时遇到下图1的情况,非常纳闷,又是苹果新规. 一般是第三方的库引起啦,立即想到百度统计了,打开SDK下载页面看看简介,里面有说到这个问题了. 图2就是这次修改的原因. 更新SDK,之前的代码不用修改,编译后上传OK. 看来以后定期要更新下第三方的SDK了,不能偷懒呀,哈哈 图1 图2

解决Windows平台通过cURL上传APP到蒲公英pgyer平台时无法使用中文升级描述的问题

解决Windows平台通过cURL上传APP到蒲公英pgyer平台时无法使用中文升级描述的问题 官方上传命令 curl -F [email protected]"315.apk" -F uKey=XXX -F _api_key=OOO -F updateDescription=中文 http://www.pgyer.com/piv1/app/upload 问题描述 同样的命令: 在Mac平台上传IPA文件时,能够正常显示中文更新描述 但是在Windows平台上传APK文件时,“更新提示

2017最新xcode打包IPA上传App Store完整教程

2017年吐血整理最新xcode打包IPA上传App Store完整教程 分为8 步进行 1.申请iOS证书 2.导入证书到钥匙串 3.xcode配置iOS证书 4.配置xcode打包环境 5.打包并导出IPA包 6.在iTunes Connect创建App 7.上传IPA到iTunes Connect 8.上传IPA成功后到iTunes Connect提交审核 一.申请iOS发布证书和描述文件 1.首先申请一个App IDs(应用身份证).已申请略过. APP IDs在后面很多地方用到 首先打

不带插件 ,自己写js,实现批量上传文件及进度显示

今天接受项目中要完成文件批量上传文件而且还要显示上传进度,一开始觉得这个应该不是很麻烦,当我在做的时候遇到了很多问题,很头疼啊. 不过看了别人写的代码,自己也测试过,发现网上好多都存在一些问题,并不是自己想要的.然后自己查阅各种资料,经过自己总结,最终完成了这个功能. 如果大家有什么问题可以提出来,一起交流,学习.有什么不对的地方也指出来,我也虚心学习.自己也是刚写博客,您们的赞是我写博客的动力,谢谢大家. 条件:我采用struts2,java ,ajax,FormData实现; 1.实现的逻辑

视频电商网站vue+七牛JSSDK集成(3)上传视频时暂停和续传

1.准备2个图片 2.这是我们用来控制视频上传/暂停 的按钮显示图片. 在vue.js的data() 里准备好变量(切换2个按钮图片的变量) options:{ iconsrc:'/icons/pause.png', uploadpause:'/icons/pause.png', uploadstart:'/icons/start.png' }, 3.编写切换按钮的事件 在vue.js的methods 里: pauseUpload(){ if (this.options.iconsrc == t

上传APP添加视频预览--精简点名

上传APP添加视频预览--精简点名 在为精简点名APP制作视频预览时的坑: 1.视频预览不能太长,也不能太短15-30s就好:我录制的是18s 2.视频的帧数不能太大,也就是说你在录制视频的时候,要慢点录制: 3.上传时可能会说文件的无法载入,请再次上传,这个多数是你网络不好造成的,找个网络好的时候,重新上传: 4.视频的尺寸是有限制的,需要不同设备的尺寸:这里有个技巧,想要不同的尺寸,那么使用不同的设备进行录制 5.采用什么样的软件,其实使用QuickTime+iphone就可以搞定,也不需要

PHP上传文件时无法上传成功,$_FILES['screenshot']['tmp_name']为空

最近在学习<HeadFirst PHP & MySQL>一书的第5章"使用存储在文件中的数据",做一个文件上传的应用时,出现了错误,就是文件无法成功上传.这个问题困扰了我很久,不过还好最后终于解决了.原因是我上传的图片文件大小超过了HTML 表单中 MAX_FILE_SIZE 选项指定的值32768Bytes即32KB导致无法上传成功. 我使用了XAMPP(Apache + MySQL + PHP + Perl)集成开发包和Zend Studio 10.6作为PHP

用PHP上传文件时$_FILES中error返回值详解

用PHP上传文件时,我们会用程序去监听浏览器发送过来的文件信息,首先会通 过$_FILES[fieldName]['error']的不同数值来判断此欲上传的文件状态是否正常.$_FILES[fieldName] ['error']==0代表一切正常,其它数值的具体含义请参考下面一段程序的注释部分,如有翻译不到之处还望指正! switch($_FILES[$field]['error']) { case 1:            // 文件大小超出了服务器的空间大小            $th

上传App Store 被拒问题及解决方案总结

最近公司比较忙,一直忙着写代码做新的应用,一连上线了几个应用,我们也是忙得焦头烂额的,都没时间做总结,今天趁APP审核期间,总结一下近期上传App Store遇到的一些问题和解决方法,以便以后查阅. 一.有关IPV6的审核被拒 苹果的IPV6未通知.其实是有多种原因的.据目前我碰到过ipv6有问题的有四五种.说一下我的几个原因和一些解决方法到目前为止,所有APP全部上架. 1,如果你的账号不能登录,提供的测试账号不存在,或是密码错误等情况.苹果会认为是ipv6问题答: 具体要看截图,苹果提供是什