I followed Shane's video: PowerApps PDF Generator using Microsoft Flow PDF Converter
I get this error message on Convert file using path test:
{
"status": 400,
"message": "Conversion of this file to PDF is not supported.",
"source": "api.connectorp.svc.ms"
}
I wasn't sure if the HTML may have caused an issue so I replaced it with basic HTML that I got from w3schools and inserted the image tag as shown in the video:
concat('<!DOCTYPE html>
<html>
<body>
<img scr="', variables('logo') ,'">
<table style="width:100%">
<tr>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
<tr>
<td>Jill</td>
<td>Smith</td>
<td>50</td>
</tr>
<tr>
<td>Eve</td>
<td>Jackson</td>
<td>94</td>
</tr>
<tr>
<td>John</td>
<td>Doe</td>
<td>80</td>
</tr>
</table>
</body>
</html>
')
I'm not sure what's wrong. If someone can help me figure out what's wrong, I would really appreciate it.