Surface DID resolution errors in VP verification failures#3979
Open
Surface DID resolution errors in VP verification failures#3979
Conversation
|
Coverage Impact ⬆️ Merging this pull request will increase total coverage on Modified Files with Diff Coverage (4)
🤖 Increase coverage with AI coding...🚦 See full report on Qlty Cloud » 🛟 Help
|
Copilot
AI
changed the title
[WIP] Update client error message for unresolved DID
Surface DID resolution errors in VP verification failures
Jan 29, 2026
reinkrul
requested changes
Jan 30, 2026
reinkrul
approved these changes
Feb 4, 2026
1 new issue
|
8aa2b43 to
3e58304
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Plan: Improve Client Error Message for DID Resolution Failures
Summary of Changes
Problem: Currently, when the server can't resolve a DID document during VP verification, it returns a generic error: "presentation(s) or contained credential(s) are invalid". This makes troubleshooting difficult for clients.
Solution Implemented:
Created
verificationErrorDescription()helper (auth/api/iam/openid4vp.go):errors.Is()and string pattern matchingUpdated error handling in two locations:
auth/api/iam/openid4vp.go- OpenID4VP HandleAuthorizeResponse flowauth/api/iam/s2s_vptoken.go- Service-to-service VP token verification flowAdded comprehensive tests (
auth/api/iam/openid4vp_test.go):New Error Messages:
Review Feedback Addressed:
err.Error()directly instead of custom messagesTesting Results:
Security Considerations:
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.