-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (26 loc) · 991 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Universal Links</title>
</head>
<body>
<h1>Universal Links pour Hello bank!</h1>
<p>Cliquez sur le lien ci-dessous pour ouvrir l'application Hello bank! :</p>
<a id="helloBankLink" href="#">Ouvrir Hello bank!</a>
<script>
// Récupération du fichier AASA
fetch('https://hellobank.fr/apple-app-site-association')
.then(response => response.text())
.then(aasaContent => {
// Création du lien universel
const aasaLink = document.getElementById('helloBankLink');
aasaLink.href = `https://hellobank.fr/apple-app-site-association#${btoa(aasaContent)}`;
})
.catch(error => {
console.error('Erreur lors de la récupération du fichier AASA :', error);
});
</script>
</body>
</html>