我们正在尝试将多个图像合并为单个pdf文档。而convertapi似乎是我们的完美解决方案。 但是,当我尝试使用api的示例时,它会返回
{
"Code": 5999,
"Message": "The error mapping is missing."
}
我的请求在下面,请你指出正确的方向:
网址:https://v2.convertapi.com/pdf/to/merge?Secret=XXXXXXXXXXXXXXXX
发布数据:
{
"Parameters": [
{
"Name": "StoreFile",
"Value": "true"
},
{
"Name": "PdfVersion",
"Value": "1.7"
},
{
"Name": "Files",
"FileValues": [
{
"Url": "https://vignette.wikia.nocookie.net/gameofthrones/images/5/52/Viserion_brought_down.jpg"
},
{
"Url": "https://vignette.wikia.nocookie.net/gameofthrones/images/5/52/Viserion_brought_down.jpg"
},
{
"Url": "https://vignette.wikia.nocookie.net/gameofthrones/images/5/52/Viserion_brought_down.jpg"
}
]
}
]
}
答案 0 :(得分:0)
可以通过在连续转换中将结果文件链接用作源文件来链接转换。结果文件URL将被异常处理,转换将以高性能处理。例如:
将JPG转换为PDF
请求:
POST https://v2.convertapi.com/jpg/to/pdf?secret=XXX&storefile=true&file=https://example.com/file1.jpg
结果:
{
"ConversionTime": 2,
"Files": [
{
"FileName": "file1.pdf",
"FileSize": 19456,
"Url": "https://v2.convertapi.com/d/ZYXFNMPT/file1.pdf"
}
]
}
请求:
POST https://v2.convertapi.com/jpg/to/pdf?secret=XXX&storefile=true&file=https://example.com/file2.jpg
结果:
{
"ConversionTime": 2,
"Files": [
{
"FileName": "file2.pdf",
"FileSize": 19456,
"Url": "https://v2.convertapi.com/d/QAZEDCTG/file2.pdf"
}
]
}
合并结果PDF文件
POST https://v2.convertapi.com/pdf/to/merge?Secret=XXXXXXXXXXXXXXXX
{
"Parameters": [
{
"Name": "Files",
"FileValues": [
{
"Url": "https://v2.convertapi.com/d/ZYXFNMPT/file1.pdf"
},
{
"Url": "https://v2.convertapi.com/d/QAZEDCTG/file2.pdf"
}
]
}
]
}