Home > Software design >  A way to access a google sheet from drive in Unity
A way to access a google sheet from drive in Unity

Time:04-10

I'm currently making two programs for work in Unity on two separate computers. I have managed to read a local text file on the main computer and upload the info into a google sheets document. For security reasons, I understand that it is not possible to then access the drive on the second computer and download the sheet as a csv file locally. Is there another way I can access the sheet data on the second computer from google drive without having to download it manually each morning?

CodePudding user response:

I suggest you do the following:

  • I suggest you create a shared folder on google drive, then set this folder to be publicly accessible.

  • then you can upload files to this drive, and then download it else where

There is 1 problem with this, is that your info will be accessible publicly by anyone who has the link, this is a simple way to do it for testing for now.

  • Related