Skip to content

Commit

Permalink
Update the redirect URL syntax in IAM API
Browse files Browse the repository at this point in the history
 Corrected the construction of the redirectUri in execution flows of the iam/api codebase.
  • Loading branch information
rolandgroen committed Mar 20, 2024
1 parent 712ff5f commit 18d66ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth/api/iam/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ func (r Wrapper) RequestOid4vciCredentialIssuance(ctx context.Context, request R
if err != nil {
return nil, err
}
redirectUri, err := url.Parse("https://" + requesterDidUrl.Host + "/iam/oid4vci/" + state + "/callback")
redirectUri, err := url.Parse("https://" + requesterDidUrl.Host + "/iam/oid4vci/callback")
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 18d66ca

Please sign in to comment.