We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It seems that when setting OpenId4VCIConfig.usePAR to false, the library still throws in AuthorizationServerClient with
if let pushedAuthorizationRequestEndpoint = data.pushedAuthorizationRequestEndpoint, let url = URL(string: pushedAuthorizationRequestEndpoint) { self.parEndpoint = url } else { throw ValidationError.error(reason: "In valid authorization endpoint") }
Shouldn't it be possible to completely skip this, so pushedAuthorizationRequestEndpoint can be nil in the Credential Offer?
Presuming PAR refers to:
var authorizationServerSupportsPar: Bool { switch self { case .oidc(let metaData): return metaData.pushedAuthorizationRequestEndpoint != nil case .oauth(let metaData): return metaData.pushedAuthorizationRequestEndpoint != nil } }
The text was updated successfully, but these errors were encountered:
@avdwerff-ddy Thank you very much for submitting this!
There is now a PR that addresses this will be merged very soon.
Sorry, something went wrong.
eu-digital-identity-wallet/eudi-lib-ios-wallet-kit#83 This issue has been addressed here also.
dtsiflit
No branches or pull requests
It seems that when setting OpenId4VCIConfig.usePAR to false, the library still throws in AuthorizationServerClient with
Shouldn't it be possible to completely skip this, so pushedAuthorizationRequestEndpoint can be nil in the Credential Offer?
Presuming PAR refers to:
The text was updated successfully, but these errors were encountered: