Here is the Blogger's 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 developing environment is Visual Studio 2010 with C# language
How can i use the Blogger's API?
I just can't understand what they wrote in 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 the posts?
Where to auth with my application (the ClientID and ClientSecret)?
You need GDATA client and for that you need to download Google API. Download it here. You need to install that MSI and it will add dll, samples to your system.
C:\Program Files\Google\Google Data API SDK
Google.GData.Blogger.dll
to your project Following code can be used for creating service and fetching data from Blogger.
Service service = new Service("blogger", "blogger-example");
string username = "[email protected]";
string password = "abc143";
service.Credentials = new GDataCredentials(username, password);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With