Skip to main content

ERR_CONTENT_ATTESTATION_VERIFY_FAILED

Error Code: ERR_CONTENT_ATTESTATION_VERIFY_FAILED

This error occurs when verification of the Content Attestation fails.

Error Message

  • "URL not allowed. Expected: <expected URL> Actual: <actual URL>"
  • "Origin not allowed. Expected: <expected Origin> Actual: <actual Origin>"
  • "Content Attestation verify failed"
  • "Content Attestation Target integrity verification failed for element(s): <message>"

Causes

  • Verification of the Content Attestation's VC may have failed. Additional details can be found in ERR_VC_VERIFY_FAILED.
  • The allowedUrl specified in the Content Attestation may not match the actual URL.
  • The allowedOrigin specified in the Content Attestation may not match the actual origin.
  • Verification of the Target Integrity included in the Content Attestation may have failed.

Examples

{
"@context": [
"https://www.w3.org/ns/credentials/v2",
"https://originator-profile.org/ns/credentials/v1",
"https://originator-profile.org/ns/cip/v1",
{ "@language": "en" }
],
"type": ["VerifiableCredential", "ContentAttestation"],
"issuer": "dns:example.com",
"credentialSubject": {
"id": "urn:uuid:78550fa7-f846-4e0f-ad5c-8d34461cb95b",
"type": "Article",
"headline": "<Article Title>",
"image": {
"id": "https://media.example.com/image.png",
"digestSRI": "sha256-OYP9B9EPFBi1vs0dUqOhSbHmtP+ZSTsUv2/OjSzWK0w="
},
"description": "<Web page description>",
"author": ["Jane Smith"],
"editor": ["John Smith"],
"datePublished": "2023-07-04T19:14:00Z",
"dateModified": "2023-07-04T19:14:00Z",
"genre": "Arts & Entertainment"
},
"allowedUrl": ["https://media.example.com/articles/2024-06-31"],
"target": [
{
"type": "VisibleTextTargetIntegrity",
"cssSelector": "<CSS Selector>",
"integrity": "sha256-GYC9PqfIw0qWahU6OlReQfuurCI5VLJplslVdF7M95U="
},
{
"type": "ExternalResourceTargetIntegrity",
"integrity": "sha256-+M3dMZXeSIwAP8BsIAwxn5ofFWUtaoSoDfB+/J8uXMo="
}
]
}
  • The Target Integrity value does not match.

Resolution

  • Review the Content Attestation that failed verification and ensure its contents are correct.
  • Confirm that the value of allowedUrl included in the Content Attestation is appropriate.
  • Confirm that the value of allowedOrigin included in the Content Attestation is appropriate. Note that allowedOrigin is deprecated.
  • Confirm that the value of Target Integrity included in the Content Attestation is appropriate. Additional details can be found in Content Attestation.