How to get full url of uploaded pdf

Hi, I just created a table that have a file type column named File, and I upload pdf file. How to get the name of the pdf file? Cause i've seen appsheet have changed the name into a new one.

And how to get the full url of the uploaded pdf file? I've trying to use this but not working.

CONCATENATE(
"https://www.appsheet.com/template/gettablefileurl?appName=",
ENCODEURL("Untitledapps"),
"&tableName=",
ENCODEURL("File"),
"&fileName=",
ENCODEURL([fileName].name)

 

Thank you!!

Solved Solved
0 4 89
1 ACCEPTED SOLUTION

CONCATENATE(
  "https://www.appsheet.com/template/gettablefileurl?appName=",
    ENCODEURL("yourAppName"),
  "&tableName=", ENCODEURL("yourTableName"),
  "&fileName=", ENCODEURL([yourFileColumnName])
)

But you'll also have to disable "Require Image and File URL Signing" option in your app's security settings.

View solution in original post

4 REPLIES 4

CONCATENATE(
  "https://www.appsheet.com/template/gettablefileurl?appName=",
    ENCODEURL("yourAppName"),
  "&tableName=", ENCODEURL("yourTableName"),
  "&fileName=", ENCODEURL([yourFileColumnName])
)

But you'll also have to disable "Require Image and File URL Signing" option in your app's security settings.

Thanks Joseph. I use this expressions, and it shows this result:

https://www.appsheet.com/template/gettablefileurl?appName=Untitledspreadsheet-22&tableName=File&file...

Seems the file name did not show up. Do i missing anything?

What is your expression? does it match mine? please show it. Did you disable URL signing?

Same expression as yours, and i just following this video:

https://www.youtube.com/watch?v=Bwkqnfo037U 

By using a bot, and it works now... Don't know why. Anyway, it works, ha!

Top Labels in this Space