Skip to content
Advertisement

Create folder Google Drive API with PHP

recently I have set up an automatic file creation system on the google drive, I have integrated the API into my symfony application, I manage to authenticate myself, etc., but I do not block on the step of creation of the file.

I have this error that occurs:

JavaScript

I do not really understand where this can come from knowing that I have set the scope indicated in the documentation: $client->addScope(Google_Service_Drive::DRIVE);

my function :

JavaScript

Do you have any ideas ?

Advertisement

Answer

I was able to reproduce via google example

JavaScript

Same error. Then I checked token.json, at “scope” it had readonly. I had deleted that token and requested again Make sure it has “See, edit, create, and delete all of your Google Drive files” option to select when giving perissions, and it will work.

this line was problem on createFolder. $client->setAccessToken('ya29.a0AfH6SMDO-L_7Lp6YWbGtSqWdPHJKCNezQr8-RRgS8xslHInLApC9uxBJVVljPTKEBgR-iidqIorjNaBThU4-aPjuAth1aD7mzjJXn5n2xP1xPw40p_OLssC7Ttj8CpBJHuqsUm89CYWAGL8cCHGhQ2hBY0YjKQ');

Google

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement