I am embedding a Google Drive folder's content into my website, via the following code (as suggested here):
<iframe src="https://drive.google.com/embeddedfolderview?id=FOLDER-ID#list" style="width:100%; height:600px; border:0;"></iframe>
I am trying to sort it by name in descending order, but I have not been able to do so.
I tried with what was suggested here, but nothing seems to work.
Here are some of my attempts:
<iframe src="https://drive.google.com/embeddedfolderview?id=FOLDER-ID&orderBy=name,desc#list" style="width:100%; height:600px; border:0;"></iframe>
<iframe src="https://drive.google.com/embeddedfolderview?id=FOLDER-ID&orderBy=desc,name#list" style="width:100%; height:600px; border:0;"></iframe>
Thanks!