In my Xamarin forms application I need to upload a zip file to google drive.Is it possible to do this using Xamarin forms application? Do I need to implement this in each platform using dependency services? Please give me a proper suggestion.
相关问题
- Custom controls disabled. There was an internal is
- Xamarin. The name 'authorEntry does not exist
- How to implement only emoji keyboard for Entry?
- Error:Xamarin.Forms targets have been imported mul
- Store data and global variables using the Applicat
相关文章
- Xamarin form MessagingCenter Unsubscribe is not wo
- Reload data on tab selected in a fragment using vi
- The type initializer for 'SQLite.SQLiteConnect
- What to use for AttributeName in Xamarin Mac
- How to use native C++ libraries in Mono for Androi
- Start an Activity from another Activity on Xamarin
- Xamarin build error: defining a default interface
- Xamarin Android Player Error when attempting to fi
Use Google's C#-based API Nuget, they support PCL-based projects and the API contains Google Drive support:
Xamarin.Forms
:Xamarin.Android
:Xamarin.iOS
:From Google's Drive Sample:
Ref: https://developers.google.com/api-client-library/dotnet/apis/drive/v3
I'd imagine you'd have to create a REST service to make use of the Google Drive API, of course you'd have to manage authentication as well.