Scenario: A supplier uses google drive to drop in an excel sheet with latest inventory updates:
https://drive.google.com/drive/u/1/folders/XXXXXXXXXXXXXXXXXX_XXXXXXXXXXXXXXXXXX
So I don’t own the folder or have any share access with the file.
Is there a way I can use the folder link above(assuming that stays consistent), to extra contents of file into a google sheet? (This I would then use to compare to our own site data and have a quick breakdown of items that need to be updated).
Thanks!
This post has been edited by a moderator to remove Google Drive folder link. Please remember that this is a public forum and avoid sharing links to folders that may contain potentially sensitive details.
Hello @sdxchris
Good question and this comes up a lot when suppliers control the source.
Short answer is no not reliably and not in a way Google supports. If you do not own the folder and are not explicitly shared on the file or folder Google does not allow programmatic access to read its contents even if the URL stays the same. The link alone is not an authorization token.
There are only a few practical paths forward.
The clean and recommended option is to ask the supplier to share the folder or the specific file with view access. Once you have that a Google Sheet can use IMPORTRANGE or Apps Script to pull the data and refresh it on a schedule with no manual work.
If the supplier refuses to share access then the only workaround is outside of Google Drive. That usually means they must push the file somewhere else like email an attachment SFTP or upload to a public endpoint. From there you can automate ingestion but it is no longer a Drive based solution.
Making the folder or file public would technically work but most suppliers will not do this for obvious security reasons and Google is actively tightening restrictions around public Drive access.
Scraping Drive via the folder URL is not viable. Google blocks this and it breaks often even if it works briefly.
If you want this to be stable and auditable the supplier must either share the file with you or change how they deliver the data. Anything else is brittle and will fail at scale.
If it helps you can frame it to the supplier as view only access with no edit rights and no visibility beyond that single folder.