How to use Blogger API v3

Here is the Blogger API v3 page: https://developers.google.com/blogger/docs/3.0/using

and downloaded the NuGet Blogger API packages: https://www.nuget.org/packages/Google.Apis.blogger.v2

My evolving environment is Visual Studio 2010 with C #

How can I use the Blogger API?

I just can't understand what they wrote at https://developers.google.com/resources/api-libraries/documentation/blogger/v3/csharp/latest/namespaces.html ...

How to initialize a new Blogger service and get a list of all posts?

Where to authorize with my application (ClientID and ClientSecret)?

+4
source share
2

GDATA, Google API. . MSI, dll, .

C:\Program Files\Google\API- API Google

  • Google.GData.Blogger.dll
  • .

Blogger.

Service service = new Service("blogger", "blogger-example");
string username = "abc@gmail.com";
string password = "abc143";
service.Credentials = new GDataCredentials(username, password);
+3

All Articles