59 lines
1.4 KiB
HTTP
59 lines
1.4 KiB
HTTP
# Test your FastAPI endpoints
|
|
|
|
GET http://127.0.0.1:8000/generer/
|
|
Content-Type: application/json
|
|
Accept: application/zip
|
|
|
|
{
|
|
"format": "instagram",
|
|
"style": "jevalideca",
|
|
"linkcolor": "blue",
|
|
"tocdepth": 2,
|
|
"pdfengine": "lualatex",
|
|
"content": "# Ceci est un titre\n## Ceci est un sous-titre\n\nCeci est un paragraphe\n\n## Ceci est un autre sous-titre\n\n> Ceci est du code",
|
|
"fontsize": 14,
|
|
"paperwidth": 1080,
|
|
"paperheight": 1920,
|
|
"margin": 180,
|
|
"extension": "zip"
|
|
}
|
|
|
|
###
|
|
|
|
GET http://127.0.0.1:8000/generer/
|
|
Content-Type: application/json
|
|
Accept: application/pdf
|
|
|
|
{
|
|
"format": "linkedin",
|
|
"style": "jevalideca",
|
|
"linkcolor": "blue",
|
|
"tocdepth": 2,
|
|
"pdfengine": "lualatex",
|
|
"content": "# Ceci est un titre\n## Ceci est un sous-titre\n\nCeci est un paragraphe\n\n## Ceci est un autre sous-titre\n\n> Ceci est du code",
|
|
"fontsize": 14,
|
|
"paperwidth": 1080,
|
|
"paperheight": 1080,
|
|
"margin": 90,
|
|
"extension": "pdf"
|
|
}
|
|
|
|
###
|
|
|
|
GET http://127.0.0.1:8000/generer/
|
|
Content-Type: application/json
|
|
Accept: application/pdf
|
|
|
|
{
|
|
"format": "slide169",
|
|
"style": "jevalideca",
|
|
"linkcolor": "blue",
|
|
"tocdepth": 2,
|
|
"pdfengine": "lualatex",
|
|
"content": "# Ceci est un titre\n## Ceci est un sous-titre\n\nCeci est un paragraphe\n\n## Ceci est un autre sous-titre\n\n> Ceci est du code",
|
|
"fontsize": 14,
|
|
"paperwidth": 1920,
|
|
"paperheight": 1080,
|
|
"margin": 90,
|
|
"extension": "pdf"
|
|
}
|