@@ -19,48 +19,48 @@ MSAL for JavaScript enables client-side JavaScript web applications, running in
19
19
20
20
#### Latest compiled and minified JavaScript (US West region)
21
21
``` html
22
- <script type =" text/javascript" src =" https://alcdn.msauth.net/lib/1.3.1 /js/msal.js" ></script >
22
+ <script type =" text/javascript" src =" https://alcdn.msauth.net/lib/1.3.2 /js/msal.js" ></script >
23
23
```
24
24
``` html
25
- <script type =" text/javascript" src =" https://alcdn.msauth.net/lib/1.3.1 /js/msal.min.js" ></script >
25
+ <script type =" text/javascript" src =" https://alcdn.msauth.net/lib/1.3.2 /js/msal.min.js" ></script >
26
26
````
27
27
28
28
#### Alternate region URLs (Europe region)
29
29
```html
30
- <script type =" text/javascript" src =" https://alcdn.msftauth.net/lib/1.3.1 /js/msal.js" ></script >
30
+ <script type =" text/javascript" src =" https://alcdn.msftauth.net/lib/1.3.2 /js/msal.js" ></script >
31
31
```
32
32
``` html
33
- <script type =" text/javascript" src =" https://alcdn.msftauth.net/lib/1.3.1 /js/msal.min.js" ></script >
33
+ <script type =" text/javascript" src =" https://alcdn.msftauth.net/lib/1.3.2 /js/msal.min.js" ></script >
34
34
```
35
35
36
36
### Via Latest Microsoft CDN Version (with SRI Hash):
37
37
38
38
#### Latest compiled and minified JavaScript
39
39
40
40
``` html
41
- <script type =" text/javascript" src =" https://alcdn.msauth.net/lib/1.3.1 /js/msal.js" integrity =" sha384-YjtcEEqiYcRGh2K/ehq07C6Bk9jKrKoMgdFy9YGfTxtrmzV3GyNi0DDgwhmcCNrE " crossorigin =" anonymous" ></script >
41
+ <script type =" text/javascript" src =" https://alcdn.msauth.net/lib/1.3.2 /js/msal.js" integrity =" sha384-rwyXLM4dOdS5ptZmCIqzjVrWmbPA6bnan0Fy35CYYY13MdE0gK/L0TVDnKdEQV7q " crossorigin =" anonymous" ></script >
42
42
```
43
43
``` html
44
- <script type =" text/javascript" src =" https://alcdn.msauth.net/lib/1.3.1 /js/msal.min.js" integrity =" sha384-kb1EkR5mZZRISRcdpYMFQRBDBb/RG/tKvYeCbgFjLUhPu54tjm1O4OPkvmOMnpPJ " crossorigin =" anonymous" ></script >
44
+ <script type =" text/javascript" src =" https://alcdn.msauth.net/lib/1.3.2 /js/msal.min.js" integrity =" sha384-4cH4i4aLXsdIJJz5DF27S+GxZXRSqBORS4NN7kc7NyZBBIugxFyt6hQt5FiR/DuZ " crossorigin =" anonymous" ></script >
45
45
```
46
46
47
47
#### Alternate region URLs
48
48
49
49
To help ensure reliability, Microsoft provides a second CDN:
50
50
51
51
``` html
52
- <script type =" text/javascript" src =" https://alcdn.msftauth.net/lib/1.3.1 /js/msal.js" integrity =" sha384-YjtcEEqiYcRGh2K/ehq07C6Bk9jKrKoMgdFy9YGfTxtrmzV3GyNi0DDgwhmcCNrE " crossorigin =" anonymous" ></script >
52
+ <script type =" text/javascript" src =" https://alcdn.msftauth.net/lib/1.3.2 /js/msal.js" integrity =" sha384-rwyXLM4dOdS5ptZmCIqzjVrWmbPA6bnan0Fy35CYYY13MdE0gK/L0TVDnKdEQV7q " crossorigin =" anonymous" ></script >
53
53
```
54
54
``` html
55
- <script type =" text/javascript" src =" https://alcdn.msftauth.net/lib/1.3.1 /js/msal.min.js" integrity =" sha384-kb1EkR5mZZRISRcdpYMFQRBDBb/RG/tKvYeCbgFjLUhPu54tjm1O4OPkvmOMnpPJ " crossorigin =" anonymous" ></script >
55
+ <script type =" text/javascript" src =" https://alcdn.msftauth.net/lib/1.3.2 /js/msal.min.js" integrity =" sha384-4cH4i4aLXsdIJJz5DF27S+GxZXRSqBORS4NN7kc7NyZBBIugxFyt6hQt5FiR/DuZ " crossorigin =" anonymous" ></script >
56
56
```
57
57
58
58
Below is an example of how to use one CDN as a fallback when the other CDN is not working:
59
59
60
60
``` html
61
- <script type =" text/javascript" src =" https://alcdn.msauth.net/lib/1.3.1 /js/msal.js" ></script >
61
+ <script type =" text/javascript" src =" https://alcdn.msauth.net/lib/1.3.2 /js/msal.js" ></script >
62
62
<script type =" text/javascript" >
63
- if (typeof Msal === ' undefined' )document .write (unescape (" %3Cscript src='https://alcdn.msftauth.net/lib/1.3.1 /js/msal.js' type='text/javascript' %3E%3C/script%3E" ));
63
+ if (typeof Msal === ' undefined' )document .write (unescape (" %3Cscript src='https://alcdn.msftauth.net/lib/1.3.2 /js/msal.js' type='text/javascript' %3E%3C/script%3E" ));
64
64
</script >
65
65
```
66
66
0 commit comments