Error 500 when performing a query with drive.file scope

前端 未结 2 1479
日久生厌
日久生厌 2021-01-23 17:02

This code runs fine with the scope \"https://www.googleapis.com/auth/drive\"

File folderEntry = drive.files().get(\"XXXXj0_srDPPGUEtHaVYtZFljMEk\").execute();
St         


        
2条回答
  •  天命终不由人
    2021-01-23 17:35

    I too get the same error. However this workaround does get all the children of a folder I created, until google fixes the query issue I suppose.

    ChildList list = service.children().list(FILEID).execute();
    

提交回复
热议问题