Content Sharing using Google Drive ASP.NET MVC
Hi Guys, I made a small content sharing portal using Google Drive and ASP.NET MVC Hope you like it. Things you must do before starting, 1) Register as a developer in google - https://developers.google.com/ 2) Create API Key and Client AUTH ID - https://developers.google.com/drive/v3/web/enable-sdk 3) Upload content to your google drive and grant public access 4) Create an ASP.NET MVC web application using Visual Studio 5) Create Page to Select and Save the ID of the uploaded content - Store.cshtml @model BE.Video <script type="text/javascript" src="https://apis.google.com/js/api.js?onload=onApiLoad"></script> <script> $(document).ready(function () { $("#gdriveSelect").click(function (event) { event.preventDefault(); // do something }); }); ...