Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
shihjay2 committed Jan 7, 2025
1 parent 5bf8402 commit 2665613
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/rp.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export const rp = RP.builder({ requestVersion: SupportedVersion.SIOPv2_ID1 })
client_id: identifier.did,
idTokenSigningAlgValuesSupported: [SigningAlgo.EDDSA, SigningAlgo.ES256],
requestObjectSigningAlgValuesSupported: [SigningAlgo.EDDSA, SigningAlgo.ES256],
responseTypesSupported: [ResponseType.ID_TOKEN],
responseTypesSupported: [ResponseType.ID_TOKEN, ResponseType.VP_TOKEN],
vpFormatsSupported: {
jwt_vc: { alg: [SigningAlgo.EDDSA, SigningAlgo.RS256, SigningAlgo.ES256] },
jwt_vp: { alg: [SigningAlgo.EDDSA, SigningAlgo.RS256, SigningAlgo.ES256] }
Expand Down
3 changes: 2 additions & 1 deletion pages/api/vp/share.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ async function handler(req: NextApiRequest, res: NextApiResponse) {
"purpose": "We want a VC of this type to proof provider claim",
"schema": [
{
"uri": "VerifiableCredential"
"uri": "https://www.w3.org/2018/credentials/v1"
// "uri": "VerifiableCredential"
}
]
// "format": {
Expand Down

0 comments on commit 2665613

Please sign in to comment.