PDF Server 1.x-3.x to 5.x
PDF Server 1.x-3.x to 5.x
If you are using PDF Server APIs directly you need to change the way your application authorizes the requests:
If you are doing client-to-server requests (your application is working on browser) then you should send requests to API Server's
/pdf-proxy
endpoint usingx-jwt-token
header, see PDF API section of API docs.If you are doing server-to-server requests (your application is working on the server and request readers cannot be exposed) then you can send requests directly to PDF Server using admin key authorization. To do this you should add the
FORMIO_PDF_ADMINKEY
environment variable to your PDF Server run config. Set it to some secret key. After that, you can authorize your requests usingx-admin-key
header, which should be the same as the environment variable value. See PDF Server direct API section of API docs.
Last updated
Was this helpful?