131 lines
3.3 KiB
HTTP
131 lines
3.3 KiB
HTTP
# Test your FastAPI endpoints
|
|
|
|
POST http://127.0.0.1:8000/token/
|
|
Content-Type: application/x-www-form-urlencoded
|
|
|
|
username=USERNAME&password=PASSWORD
|
|
|
|
###
|
|
|
|
GET http://127.0.0.1:8000/generer/
|
|
Content-Type: application/json
|
|
Accept: application/zip
|
|
Authorization: Bearer TOKEN_HERE
|
|
|
|
{
|
|
"format": "instagram-fullscreen",
|
|
"style": "pleineconfiance",
|
|
"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\n\nCeci est un emoji :heart_eyes:\n\n::: {.center}\nCeci est centré\n:::",
|
|
"fontsize": 14,
|
|
"paperwidth": 1080,
|
|
"paperheight": 1350,
|
|
"ratio": 80,
|
|
"margin": 108,
|
|
"vmargin": 250,
|
|
"fps": 15,
|
|
"stilltime": 2,
|
|
"extension": "jpg"
|
|
}
|
|
|
|
###
|
|
|
|
GET http://127.0.0.1:8000/generer/
|
|
Content-Type: application/json
|
|
Accept: video/*
|
|
Authorization: Bearer TOKEN_HERE
|
|
|
|
{
|
|
"format": "instagram-story",
|
|
"style": "pleineconfiance",
|
|
"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\n\nCeci est un emoji :heart_eyes:\n\n::: {.center}\nCeci est centré\n:::",
|
|
"fontsize": 14,
|
|
"paperwidth": 1080,
|
|
"paperheight": 1920,
|
|
"ratio": 100,
|
|
"margin": 108,
|
|
"vmargin": 375,
|
|
"fps": 15,
|
|
"stilltime": 2,
|
|
"extension": "mp4"
|
|
}
|
|
|
|
###
|
|
|
|
GET http://127.0.0.1:8000/generer/
|
|
Content-Type: application/json
|
|
Accept: application/pdf
|
|
Authorization: Bearer TOKEN_HERE
|
|
|
|
{
|
|
"format": "slide169",
|
|
"style": "pleineconfiance",
|
|
"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\n\nCeci est un emoji :heart_eyes:\n\n::: {.center}\nCeci est centré\n:::",
|
|
"fontsize": 14,
|
|
"paperwidth": 1920,
|
|
"paperheight": 1080,
|
|
"ratio": 100,
|
|
"margin": 108,
|
|
"vmargin": 192,
|
|
"fps": 15,
|
|
"stilltime": 2,
|
|
"extension": "pdf"
|
|
}
|
|
|
|
###
|
|
|
|
GET http://127.0.0.1:8000/generer/
|
|
Content-Type: application/json
|
|
Accept: application/pdf
|
|
Authorization: Bearer TOKEN_HERE
|
|
|
|
{
|
|
"format": "lettre",
|
|
"style": "pleineconfiance",
|
|
"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\n\nCeci est un emoji :heart_eyes:\n\n::: {.center}\nCeci est centré\n:::",
|
|
"fontsize": 14,
|
|
"paperwidth": 2550,
|
|
"paperheight": 3300,
|
|
"ratio": 100,
|
|
"margin": 200,
|
|
"vmargin": 450,
|
|
"fps": 15,
|
|
"stilltime": 2,
|
|
"extension": "pdf"
|
|
}
|
|
|
|
###
|
|
|
|
GET http://127.0.0.1:8000/generer/
|
|
Content-Type: application/json
|
|
Accept: application/pdf
|
|
Authorization: Bearer TOKEN_HERE
|
|
|
|
{
|
|
"format": "instagram-carre",
|
|
"style": "pleineconfiance",
|
|
"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\n\nCeci est un emoji :heart_eyes:\n\n::: {.center}\nCeci est centré\n:::",
|
|
"fontsize": 20,
|
|
"paperwidth": 1080,
|
|
"paperheight": 1080,
|
|
"ratio": 100,
|
|
"margin": 180,
|
|
"vmargin": 300,
|
|
"fps": 15,
|
|
"stilltime": 2,
|
|
"extension": "jpg"
|
|
}
|