In GoAnywhere Services 2.5.0 and higher you can provide links to users that will download specific files. The user would still need to authenticate but the link will take them to a simple interface where they can download the file specified in the URL.
The URL would look like the following:
https://[hostName][:portNumber]/webclient/download/[relativeFilePath][?u=userName]
[hostName] - This should be replaced with your domain or IP address for GoAnywhere Services.
[:portNumber] - If you are using an IP address and the Web Client is not using the default port 443.
[relativeFilePath] - This is the file path once the user logs in. If they have file.txt in their home directory the relativeFilePath would be 'file.txt'. If the file is in a subdirectory like 'outbound' the path would be 'outbound/file.txt'.
[?u=userName] - If you decide to pass in a user name the login page will only prompt the user for a password. Without this parameter the login will ask for user name and password.
Examples URLs:
Code: Select allhttps://goanywhere-server/webclient/download/file.txt?u=userA
https://192.168.1.1:9443/webclient/download/outbound/file.txt