50 questions
-1
votes
1
answer
184
views
How can I make PHP to access a given normal-user DRIVE without requesting OAUTH2 credentials?
I'm willing to manage a Google Drive folder via FlySystem. I've found tons of informations about accessing Google Drive via PHP thru the official client library.
But I find only 2 scenarios I can see ...
1
vote
1
answer
1k
views
Displaying pdf files from google drive
I am displaying pdf files from my google drive on my webpage. I did it by showing an Iframe with this link:
https://drive.google.com/uc?export=view&id={FILE_ID}
This worked well for a while. But ...
1
vote
0
answers
195
views
how to download android app from google drive and install in flutter
I'm beginner for flutter. I built An android App(called "DCS"). A new version of that app(replace.apk) is stored in google drive and shared for public. Size of the app is 20MB. When touch a ...
0
votes
1
answer
196
views
Excluding folders starting with a dot in google drive API query
I am using Python client for google drive API.
I want to enumerate folders that has a name that does not start with a dot ('.').
My naive query to find the folders looks like this:
query = f"&...
0
votes
1
answer
176
views
Automatic Trasfers from one Google Drive account to another
Is there a service or feature that will allow to feed specific google drive folder from one account to another regularly (for example every few days)?
I need this for stock management.
The plan is to ...
0
votes
0
answers
103
views
Google Drive Java API file parents are not fetching correctly
I have a Java program which I use to fetch folders and files from Google Drive. I'm building the path for the file by traversing the parents of each file.
When I create a folder in one of my personal ...
1
vote
0
answers
266
views
"upload was unsuccessful,request contained no data" while trying to upload a folder to google drive- Android application
I am trying to share a folder in my mobile device to google drive .But I am getting the error
upload was unsuccessful,request contained no data google drive from mobile app
I could share the folder ...
3
votes
1
answer
2k
views
Access blocked by CORS policy No 'Access-Control-Allow-Origin' header is present on the requested resource
Laravel 9.19
Livewire 2.10
Filament 2.0
masbug/flysystem-google-drive-ext 2.2
I am trying to using google drive as a filesystems storage .. every thing works fine so i can store files and open it .. ...
0
votes
1
answer
155
views
Spatie\Backup\BackupDestination\BackupDestination::connectionError(): Return value must be of type Exception, null returned
I'm trying to backup Laravel to google drive, I'm using Spatie and masbug/flysystem-google-drive-ext
and facing this problem.(it's working fine when taking backup in local.)
main-error:
Here is my ...
0
votes
0
answers
265
views
How can i change the "Composer.lock" file version or get the flySystem-google-drive:~1.1
[composer require nao-pon/flysystem-google-drive:~1.1"] "I also tried many other commands for solving the error but they didn't work out so these are some commands I used "composer ...
6
votes
1
answer
4k
views
Problem with installing nao-pon/flysystem-google-drive Laravel
I have a problem with installing nao-pon/flysystem-google-drive
When I run the command, composer requires nao-pon/flysystem-google-drive or nao-pon/flysystem-google-drive:~1.1
I get the error like ...
0
votes
0
answers
165
views
Move google drive folder with all files/folders in it from one directory to another based on google sheet value
I want the folders with all the files or subfolders in them to be moved from one directory/folder to another based on the value in google sheet, but at the same time not change the Id of the folder ...
0
votes
0
answers
2k
views
Path issues in google colab
I am having trouble getting google collab to accept a path I specified for a folder.
data_dir = "/content/drive/MyDrive/Traffic_sign/TSF/Traffic_sign_classification"
!ls
train_path = 'Train'
...
2
votes
1
answer
1k
views
Find the mapped google drive
If (!(Get-PSDrive R -PSProvider FileSystem -ErrorAction SilentlyContinue)) {
#this function checks for the latest exe of google drive. Then tries to start it.
Import-Module C:\Tasks\Modules\...
1
vote
1
answer
423
views
sync google drive folder algorithm
let say the source folder is Folder A. The target folder is Folder B.
Each time period (maybe 1 day), delete folder B and I use programming copy Folder A to Folder B using recursion.
I am doing this ...