Join the Stack Overflow Community
Stack Overflow is a community of 4.7 million programmers, just like you, helping each other.
Join them; it only takes a minute:
Sign up

I am trying to invite testers to my iOS app through iTunes Connect, but when they receive an invitation, nothing is working.. Seen the screenshot below: enter image description here

That is what happens when clicking the link from the iTunes Connect new user e-mail:

Welcome to iTunes Connect. You have successfully created an iTunes Connect account for 123@123.com. To complete the process, activate your account using the password already associated with this Apple ID.

If you have any questions about this email, please use Contact Us.

Regards, The iTunes Store team

Am I doing something wrong?

share|improve this question
    
I just encountered the same issue. – Wei-Ming Chao Oct 12 '15 at 2:32
    
Do you use Safari? iTunes Connect is compatible with Safari. – Kosuke Ogawa Oct 12 '15 at 2:37
    
Yeah, I used Safari to open the activation url but didn't work. – Wei-Ming Chao Oct 12 '15 at 2:52
1  
Same here, Safari. Also tried Chrome and Firefox. – Rebel Designer Oct 12 '15 at 5:53
    

The problem seems to be that a script in the page is referring to a non-public hostname idmsauth-stable.corp.apple.com. I was able to workaround this issue by manually modifying the script in Chrome Developer Tools and re-executing the code in the Developer Console.

1) Open the activation URL in Chrome

2) Open Chrome Developer Tools (Cmd-Alt-I on OS X, Ctrl-Shift-I on Windows)

3) Go to the Sources tab

4) Find main.js (itunesconnect.apple.com/itc/static-resources/main.js)

5) Modify line 20 to replace "idmsauth-stable.corp.apple.com" with "idmsa.apple.com"

6) Select the contents of the main.js file and copy to the clipboard

7) Paste into the console (you may need to tap the ">_" button to make it visible)

8) Press "Enter"

You should now see the expected iTunes Connect spinner appear and eventually you'll see a Terms and Conditions window.

Credit by apboyle from apple forums

share|improve this answer
    
This fixes the problem only for me, not for all test users I invited.. They have no idea how to do this. – Rebel Designer Oct 13 '15 at 5:36
    
Thanks, that worked. If you only have a few users it may be a viable solution for now. Basically it's just pasting in the code in the console and pressing enter. – Summer Oct 13 '15 at 8:43
    
It worked. +1. You deserve a medal for figuring this out. Apple has to go back to school. This has been working this way for a while. Very sloppy. – HotFudgeSunday Oct 13 '15 at 13:22
    
Works for me! Many thanks! – singledev Oct 14 '15 at 19:50
    
You, friend, are a gentleman and a scholar. Best. Hack. Ever. May the wind ever be at your back. – Ian Oct 15 '15 at 17:28

It seems Apple fixed the issue, I don't get the white screen anymore.

share|improve this answer
    
Same here. Seems to be fixed. Hopefully for everyone. – Rebel Designer Oct 17 '15 at 8:41
    
I am having this issue right now: imgur.com/6a8bN0y. It's been like this for at least 2 DAYS! Does anyone else experience this? – chabislav Nov 6 '15 at 18:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.