14

When I tried to validate an App Store build using Xcode 8 I'm getting the following error:

ITunesSoftwareServiceAuthenticationErrorDomain 434.

What does this mean?

Mike Stockdale
  • 5,256
  • 3
  • 29
  • 33
Rameez
  • 312
  • 4
  • 20

5 Answers5

11

I received the same error on multiple attempts. I made some changes (to provisioning profiles etc.) and then validation worked fine a couple of times. But then the error message came back for no apparent reason. Seems like a bug on Apple's side.

Since then I switched to use Application Loader, and with that workflow I have not encountered any problems. Here's how.

  1. In the Xcode Organizer, I do not use "Validate...", but instead "Export..." to save the my_product.ipa file.

  2. Then open Apple's Application Loader (Xcode menu > Open Developer Tool > Application Loader), and with that I upload the my_product.ipa to iTunes Connect.

This process has seemed reliable to me.

rene
  • 1,975
  • 21
  • 33
  • @UmaMadhavi I found a different workflow which has resolved the issue for me. I just edited my answer to describe that workflow. Good luck! – rene Dec 31 '16 at 13:16
  • Thank u but for me by just restarting Xcode it was resolved – Uma Madhavi Dec 31 '16 at 14:40
  • @UmaMadhavi I'm glad it works for you again, but just beware, that my experience is that this problem would come and go. I would make some changes and suddenly it would work, then suddenly fail again. My experience is that the Application Loader is actually reliable. – rene Jan 02 '17 at 00:50
  • I successessfully uploaded the .ipa file using the Application Loader. But I don't see it anywhere in the iTunes Connect. How do I find it? – Isuru Mar 03 '17 at 12:18
  • @Isuru If I remember right, it will show up under the "Build" section, but it may take a while (hours?) before it has completed processing and actually shows up. So check again after a while. – rene Mar 04 '17 at 13:31
  • @rene Yes, it showed up after a few minutes. Thanks. – Isuru Mar 04 '17 at 13:32
2

Firstly, I received the same error on multiple times. Change some codes, finally release that :

Solution:

unchecked "include bitcode" , then validate (in my case it was successful)

After

Validate with checked "include bitcode"

P.S : Next time, I used XCODE Application Loader. It will be ok for deploy your application.

ElvinM
  • 410
  • 7
  • 16
1

For what it's worth, this appears to be intermittent. I just received the error and literally did a retry without doing anything else and it worked.

Gary Foster
  • 171
  • 2
  • 3
0

I have seen more reports of this, and some seemingly unrelated but very similar messages from other services. I finally submitted a Code-Level Support Technical Support Incident (TSI). After two days I was told this is not a "code" issue and was credited the TSI i burned when submitting the questions. They got everything they needed to see the problem, but since they called me "John" in their answer, and they clearly saw my name was "Harry", hmm...

the reply, exactly:

Blockquote Please include the line below in follow-up emails for this request. Follow-up: 651327438 Hello John, Thank you for contacting Apple Developer Technical Support (DTS). We provide support for code-level questions on hardware & software development, and are unable to help you with your question. For questions regarding iTunes Connect, we recommend that you first check the iTunes Connect Developer guide. http://developer.apple.com/library/ios/iTunesConnectGuide If you are not able to find the information you need in the iTunes Connect Developer Guide and you are still not able to resolve your issue, please direct your inquiry through the iTunes Connect Contact Us system When contacting the iTunes Connect Team, be sure to mention that you were referred by DTS. Note that some issues with iTunes Connect are transient, and may resolved by waiting a few hours and trying again later.

Bottom Line: I gave up and uploaded the archive. It was accepted. I will update when the app is live.

harry
  • 340
  • 4
  • 13
0

Quit Xcode and re-login as suggested by members does not work for me. I solved it by using Application Loader.

Steps:

  1. Change the version and build in your app.
  2. Archive again for new file submission and export file to desktop.
  3. Goto top menu: Open Developer Tool > Application Loader (if you don't have this, search, download and install this plug init)
  4. Upload the new version archived file. Done

You will find them in iTunes Connect. From here process to My Apps > Choose the rejected app > Change the version and click on the new uploaded archive file, file will be processing.

  1. Time to resubmit.
Anh Pham
  • 2,108
  • 9
  • 18
  • 29
Paul S G
  • 11
  • 1