How do I upload a files to common Google Drive using Flutter? [closed] - flutter

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 14 days ago.
Improve this question
I want know how we user common google drive for file upload from my flutter app?
I tried more ways and those are not sutible for my requirment

Process
Create GCP Project and Enable Drive API and generate credentials
Either directly use https://developers.google.com/drive/api/guides/about-sdk or use this package https://pub.dev/packages/googleapis

Related

Google sign in implement difference between app and web [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 days ago.
Improve this question
Why Google sign in code is difference between web and native.
How do I make one flutter code that can build and run Google sign in in both web and native?
Base on the document here: https://firebase.flutter.dev/docs/auth/social/.

download a text file in flutter [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I'm trying to download a .txt file from the web in flutter is there any way?
it would be helpful if it works also for Google drive.
thanks.
you can use dio flutter to download files
response = await dio.download("url", "storagePath");
downloading from google drive your url would look something like this
GET https://www.googleapis.com/drive/v3/files/[FILEID]?alt=media&key=[YOUR_API_KEY]
here is a link to SO answer with more details on using dio to download files

I don't want to require login for my app, but how do I keep their data separate? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
I don't want to have users login or anything, so how would I capture and sort their data to firebase?
Is there anyway to code and have the app recognize people by their device?
Firebase provides an anonymous login feature. You can read more about it here:
https://firebase.google.com/docs/auth/ios/anonymous-auth
Also, if you choose to include a sign in feature later, you can convert the anonymous account into a permanent account while keeping their data.

Is there a way to preview a file in Google Cloud Storage? A way to see the first few lines without downloading the entire file? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I just want to see the column headers for a CSV file so I can create a table before importing it into Cloud SQL. Preferably using the web-based Storage Browser at https://console.cloud.google.com/storage/browser
I think I found a way. Open up the Google Cloud Shell (one of the icons in the upper right) and use the "gsutil cat" with the -r range option or pipe it through head.

How to create a login application using Google web tool kit? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am new in gwt.I want to create a login application using google web tool kit.Thanks in advance.
Google provides a short tutorial which describes how to create a login page with user/password authentication and storing the data in a server-side secure fashion: google-web-toolkit-incubator Login Security FAQ