Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sign In with Apple: verify my domain not working

I was integrating Sign in with Apple in my mobile app. I followed the configuration steps provided in the developer portal and downloaded the apple-developer-domain-association.txt file and placed it on my server at the given path.enter image description here Now the file is loading from web browser but I'm not able to verify my domain on Apple developer account. Its giving me an error message "Verification failed for domain".

Anyone got same issue? how to get verified sucessfully

like image 212
Vinu David Jose Avatar asked Aug 08 '19 09:08

Vinu David Jose


People also ask

How do I verify my Apple ID domain?

To determine whether you need to verify your domain, sign in to Apple Business Manager or Apple School Manager and navigate to Settings > Accounts. Domains with a green circle to the left of the name are verified. Domains with a yellow circle need to be verified. Verify existing domains in Apple Business Manager.

How do you verify the domain?

You verify your domain through your domain host (typically where you purchased your domain name). Your domain host maintains records (DNS settings) that direct internet traffic to your domain name. (Go to Identify your domain host.) Cloud Identity gives you a verification record to add to your domain's DNS settings.


1 Answers

To verify domain to configure Sign in With Apple apple-developer-domain-association.txt file must be accessible publicly.

https://{YOUR_DOMAIN}/.well-known/apple-developer-domain-association.txt

Make sure

  1. Domains and domains associated with email addresses must comply with Sender Policy Framework (SPF) standards.
  2. Must be accessible via https. http doesn't work.
  3. No redirect not even to wwww. Example url mentioned above must serve the apple-developer-domain-association.txt file without any redirects.

Hint: if you are serving apple-developer-domain-association.txt with www than you must register domain www.{YOUR_DOMAIN} white configuring sign in with apple configuration on developer.apple.com. To do that you have to make sure www.{YOUR_DOMAIN} is SPF compliance.

like image 197
Bilal Avatar answered Oct 02 '22 15:10

Bilal