diff options
author | Matthew Miller <matthew@millerti.me> | 2023-04-16 18:14:50 -0700 |
---|---|---|
committer | Matthew Miller <matthew@millerti.me> | 2023-04-16 18:15:49 -0700 |
commit | a1397f57fd3886ac57b9cb1e02239e8b7567cb09 (patch) | |
tree | e775ee5a87dc307f28c83c023c926ed621ed384e | |
parent | 8fe2ccad869b6cb2efee864ad8a8c6fc83d6a060 (diff) |
Update FIDO MDS getEndpoints URL
-rw-r--r-- | example/fido-conformance.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/example/fido-conformance.ts b/example/fido-conformance.ts index 180804d..2f7a09c 100644 --- a/example/fido-conformance.ts +++ b/example/fido-conformance.ts @@ -57,8 +57,10 @@ try { /** * Initialize MetadataService with Conformance Testing-specific statements. + * + * (Grabbed this URL from the POST made on https://mds3.fido.tools/ when you submit your site's URL) */ -fetch('https://mds3.certinfra.fidoalliance.org/getEndpoints', { +fetch('https://mds3.fido.tools/getEndpoints', { method: 'POST', body: JSON.stringify({ endpoint: `${expectedOrigin}${fidoRouteSuffix}` }), headers: { 'Content-Type': 'application/json' }, |