Questions tagged [apple-app-site-association]
37 questions
1
vote
1 answer
.htaccess skip apple-app-site-association but filter other
I have a rule for changing the extension
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^item/(.*)/?$ item.php/$1 [NC,L]
RewriteRule ^([^.]+)$ $1.php [NC,L]
All fine But this rule also filter apple-app-site-association
Need skip…

AC1D
- 248
- 5
- 16
1
vote
1 answer
Using the apple-app-site-association file with an azure static-web-app
I am using an Azure static web app to host a website. I want to host the apple file on the backend for deep linking. I am running into the problem however that the apple documentation requires there is no extension on the file when it is uploaded. I…

tyler powell
- 130
- 1
- 12
1
vote
1 answer
apple-app-site-association JSON not showing up?
I have implemented my association like it is done here, but when I then go to check the JSON by doing: https://day21.co/apple-app-site-association.
This shows up:
{"applinks":{"apps":[],"details":[]}}
Rather than what I have in the file:
{
…

Kev Wats
- 896
- 1
- 5
- 13
1
vote
0 answers
Universal link not redirecting to iOS app
I have done basic setup for universal linking
Associated domain is set applinks:domainName
Uploaded apple-app-site-association file to the server (tested in https://branch.io/resources/aasa-validator/). Updated new format to support iOS…

iOSDeveloper_2021
- 11
- 1
1
vote
0 answers
Angular 4 website - how we use apple-app-site-association
I have created file like apple-app-site-association and move the file to www folder and try access this file from url for universal linking, it always show not found and online validator shows the error.
{
“applinks”: {
“apps”: [],
…

Manikandan
- 844
- 15
- 31
1
vote
2 answers
APPLE APP SITE ASSOCIATION (AASA) Troubleshooting - iOS - Wordpress hosted site
I'm trying to set up AASA for my app and am testing on a Wordpress hosted site (https://toycollectorapp.com)
I have uploaded the AASA file to the .well-known directory and added an .htaccess file so that Wordpress will apply the mime/JSON type to…

Zachary Fisher
- 781
- 1
- 7
- 18
1
vote
0 answers
Is it possible to verify the apple app site association file was properly requested and configured for an instance of an installed IOS app?
Is it possible to verify the apple app site association file was properly requested and configured for an instance of an installed IOS app? Ideally, we could easily verify that Universal Links are working properly for an instance of a device and…

dclaze
- 51
- 6
1
vote
0 answers
Apple-app-site-association returning 500 from validation and working as expected in browser and curl
Here is my nginx configuration
server {
root /home/ubuntu/www
...
location = /apple-app-site-association {
default_type 'application/json';
}
location = /.well-known/apple-app-site-association {
default_type…

niksmac
- 2,667
- 3
- 34
- 50
1
vote
2 answers
Testing AppClip with local experience issue
I am trying to test an AppClip on my device by scanning the QR code.
Apple suggested:
Next, on the device, open the Settings app, navigate to Developer >
Local Experiences, and select Register Local Experience. Configure a
local experience and…

Kishore Kumar
- 4,265
- 3
- 26
- 47
0
votes
0 answers
Debugging Apple app site association file in swift
This screenshot includes of result debugging aasa I integrate the universal link into my app by (associated domain) and then debug the universal link on the real device but I get this error from swcutil_show.txt to trace whether the universal link…

Eslam Abotaleb
- 21
- 3
0
votes
0 answers
Universal Link Not Display On Safari Browser In Ios
I add the configuration of apple app site association like that :
Then this file is uploaded into the host server like that url (https://domain/apple-app-site-association),
From my side add the associated domain in xcode,
The problem when adding the…

Eslam Abotaleb
- 21
- 3
0
votes
1 answer
Apple App Site Association (AASA) file is not being updated on app-site-association.cdn-apple.com
My app has three separate environments named
int
sbx
prod
Here are my three AASA files on my…

Alex
- 952
- 7
- 12
0
votes
0 answers
How to display at the top of a Smart banner for Universal Links in Safari
Implemented Universal link of IOS with iPhone and iPad. My app runs the app by accessing a specific URL in the safari browser. When accessing a specific URL, a Smart banner appears at the top of the web page. This Smart Banner is a smart banner…

Jungwon
- 1,038
- 7
- 20
0
votes
0 answers
How to save Apple-app-site-assocation file without json extension on Mac?
I've been trying to create universal link and the first step specifically for this type of universal link is an apple-app-site-association json file without the json file extension saved to my /.well-known directory on my server... several…

askingquestions
- 1
- 2
0
votes
0 answers
Branch.io hosted AASA file is invalid for iOS 12 devices
I recently noticed that users on iOS 12 were not able to follow our Branch links (company.app.link) to our app. Upon further investigation I found this error in the iOS 12 device logs:
### Download URL…

bberak
- 292
- 3
- 11