You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi walt.id team! According to the documentation in walt.id docs for did:web:example.com:user:alice the did document should be installed at https://example.com/.well-known/user/alice/did.json. But in DidWeb.kt the getDidDocUri function lacks the /.well-known part when did has a path: else -> URI.create("https://${getDomain(didUrl)}/${path}/did.json")
Shouldn't it be more like this: else -> URI.create("https://${getDomain(didUrl)}/.well-known/${path}/did.json")
The text was updated successfully, but these errors were encountered:
Hi walt.id team! According to the documentation in walt.id docs for
did:web:example.com:user:alice
the did document should be installed athttps://example.com/.well-known/user/alice/did.json
. But in DidWeb.kt the getDidDocUri function lacks the/.well-known
part when did has a path:else -> URI.create("https://${getDomain(didUrl)}/${path}/did.json")
Shouldn't it be more like this:
else -> URI.create("https://${getDomain(didUrl)}/.well-known/${path}/did.json")
The text was updated successfully, but these errors were encountered: