Could you help me with cert-tools:
- Wondering how to add variable information (multiple values) from the csv-file to “display” field (in conf.ini of cert-tools). For example, If I want to have something like this:
"display": {
"contentMediaType": "text/html",
"content": "<h1>Diploma</h1>...*|NAME|*, credits *|ECTS|*"
}
If I add it to additional_global_fields, it doesn’t understand that |NAME| and |ECTS| are variable values. If I add it to additional_per_recipient_fields, it doesn’t support multiple variables.
How to solve it?
Updated:
2. I tried with pdf, but found that it doesn’t show up on the page during the verification process. There is no preview, only offers to download locally. Will it be possible to view it later on the browser page?
-
Will it be possible to use “style” tags for text/html format (“display.content” field)? I found an old post (Using <style> tags in displayHtml field)… Now, when I used them, I got the label “removed” instead of my document during the verification process.
-
When I added images (base64 encoding) to the text/html format
<img src=\"data:image/png;base64,iVBO...\" width=\"240\">
it displayed them fine, but failed verification and returned “Computed hash does not match remote hash”. How can this be affected by the presence of images in the text of the “display.content” field? What is the reason?