Hello community,
I'm trying to use terrasoft.axd to download an image that is loaded as a system setting.
I am using the following query string /terrasoft.axd?s=nui-binary-syssetting&r=Glbxxx
where Glbxxx is the system setting code.
I don't understand why some calls return the correct image and others return a http error 401 (access denied).
Like
Hello.
The 401 Unauthorized error you are encountering is not related to access rights (Access Denied) but rather to session authentication. This happens because your session expired or was not active at the moment you made the request. As a result, the system does not recognize your authentication and returns a 401 Unauthorized response.
This is not an issue with the terrasoft.axd endpoint itself, but rather an authentication problem. We recommend checking whether your session is still active when making the request and re-authenticating if needed.
For more details, you can refer to the official HTTP 401 documentation: MDN - 401 Unauthorized
Best regards,
Antonii.
Hello Antonii,
In the Creatio login page the logo in the top is downloaded using the following link
https://xxx.creatio.com/terrasoft.axd?s=nui-binary-syssetting&r=LogoImage"
when I navigate to the login page the user doesn't have an active session, so could you explain how it works?