Questions tagged [google-api-dotnet-client]

The Google APIs Client Library for .NET is a generic .NET runtime client for Google Services. It supports OAuth2.0 authentication, and is able to generate strongly typed client libraries for Discovery-based services.

The Google APIs client library for .NET provides simple, flexible, and powerful access to Google APIs such as Drive, YouTube, Calendar, Storage and Analytics.

The library supports OAuth2.0 authentication, and is able to generate strongly typed client libraries for Discovery-based services.

Requirements

  • .net framework 4.5

Supported platforms

  • .NET Framework 4.5 and 4.6
  • .NET Core (via netstandard1.3 support)
  • Windows 8 Apps
  • Windows phone 8 and 8.1
  • Portable class libraries

Developer documentation

Nuget Packages

To make it easer for you to develop with the Google APIs using the Google API client Library for .NET we have released a number of NuGet packages. A full list of all the packages available can be found at Google.APIs nuget

1271 questions
-1
votes
1 answer

Getting started with Google Calendar for C# ASP.NET

I am totally new to Google API and have no experience integrating things into my programs. Now I am assigned to work on integrating the calendar into my program. Unfortunately I cannot find good tutorials and I don't know where to place the codes…
-2
votes
1 answer

Authentication for multiple projects in GCP using service accounts

I have 2 GCP projects for which I am trying to perform authentication using C#. Because the projects are belonging to different clients, I am given access to service account json file. Is there a way to call the Compute engine API in both the…
-2
votes
1 answer

How to create event with videoconference in Google Meet in C# using Google Calendar API?

Well.. I'm trying this code to create an Event CalendarService service; GoogleCredential credential; try { string[] scopes = new string[] { CalendarService.Scope.Calendar }; …
-2
votes
1 answer

Failed to launch browser access denied after hosting to IIS

I am using the Google.net client library to authenticate to a Google API this code works locally but when I uploaded it to my server I get this error "Failed to launch browser with…
-2
votes
1 answer

Authorized failed when run Google.Apis.YouTube.Samples.Upload project from Github

I am new from youtube api. I would like to have a console program schedule upload videos to youtube without authorization everytime. I see many posts and videos but not the complete story, I download the sample from Github and try to run it. It…
-2
votes
1 answer

Upload Zip to Google Drive

I Want upload Zip file on Google Drive but using C Sharp Windows Application (Frame Work 4.0 VS 2010) credential = GoogleWebAuthorizationBroker.AuthorizeAsync( GoogleClientSecrets.Load(stream).Secrets, …
-2
votes
1 answer

How to retrive events from google calendar API fro c# .net using API key

I am able to retrieve event from google calendar API using OAuth authentication by code given here, but how to code for getting event information using API key.
-2
votes
1 answer

How to post google plus feed with google api?

I want to post on my own google plus feed with sharing public Is this possible with google plus API ? If so how can i do it with using c# ? The application will net 4.5 C# WPF
Furkan Gözükara
  • 22,964
  • 77
  • 205
  • 342
-3
votes
1 answer

Is there any way to get files/folders uploaded by me in google drive through c#

I am working with the Google drive API in C#. I have been looking at the file.list method. I am trying to list the folders/files which are uploaded by me. As well as files/folders from specific folder based on folder name. So far I have only been…
-3
votes
1 answer

ASP.NET MVC 4 error with Google CalendarAPIv3

I try this: var auth = new AuthorizationCodeMvcApp(controller, new FlowMetaDataCalendarV3()) .AuthorizeAsync(CancellationToken.None).Result; AuthorizationCodeMvcApp execute fine, but…
1 2 3
84
85