Hi everyone, does anyone know the best way for an outside application to download a file from the file cabinet? SuiteAnswers indicates that a GET call to a Restlet will not work in this case. Has anyone set up something like this in the past?
b
battk
02/11/2020, 9:51 PM
Least secure easy way is to make the file available without login
battk
02/11/2020, 9:52 PM
An equally insecure less easy way is an external suitelet that writes a file
battk
02/11/2020, 9:52 PM
You can make the suitelet more secure by implementing some sort of authentication
battk
02/11/2020, 9:54 PM
Actual security can be found in using webservices to get files. Very inconvenient to implement
battk
02/11/2020, 9:56 PM
You can also make a restlet return a file the same way webservices does: return the base64ed file contents as a value on your response