I am trying to download a file from Google Drive to my harddrive. The entire authentication is done in JavaScript and I am receiving a response from the server:
request = gapi.client.drive.files.get({'fileId': id}); request.execute(function(resp) { ........ }
I have the correct scope in order to be allowed to download files:
Also the request above is returning me a downloadUrl.
I am trying to send the downloadUrl to PHP, but the download process is failing with a 401 error.
Any suggestion? I have tried to download the file directly in Javascript, but I didn't find a good solution yet.
Thanks and let me know if you have any question. It is my first question here since this one is killing me :D
Type: Google_Service_Exception
Message: Error calling GET https://www.googleapis.com/drive/v2/files/0BzoBu-s2PDkDRjhHU1RLZFhkOEk?alt=media: (403) Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.
- Never had this issue before. – Johansson Owen Jun 01 '17 at 14:05