Today, I saw the message published by the Google API. Net Library. I have a preliminary look at the relevant content. Program It is very convenient to interact with Google services.
Google has been released as an open source. Net APIs client libraryDevelopers can use this client library to access services that provide discoverable APIs, such as books, analytics, latitude, and prediction), tasks (work list), translate (translation), and some other services.
Http://code.google.com/p/google-api-dotnet-client/wiki/Downloads can downloadSource codeAnd examples
TheseCodeThe procedure is as follows:
1. In https://code.google.com/apis/console/#:access or
Https://code.google.com/apis/console/ B /0/#:accessObtain oauth authentication information and key
2. Activate related services at the preceding address. [otherwise, you cannot use them. Pay attention to paid applications. The number of free services is limited]
3. Add the following information to the Code:
/// The oauth2.0 Client ID of your project. Public static readonly string clientid = "<enter your clientid here> ";
/// The oauth2.0 client secret of your project. Public static readonly string clientsecret = "<enter your clientsecret here> ";
/// Your API/developer key. Public static readonly string apikey = "<enter your apikey here>"; 4. Compile the example program to experience tasks (tasks. WPF. listtasks), books (books. listmylibrary), and other applications.
[Note: some services, such as translate, were previously free and are now charged]
For services not currently provided, you can use gdata (Google data API) to interact with the service.
Google data API provides simple and standard protocols for reading and writing data on the network. Google data APIs allow your client applications to interact with Google services.
Http://code.google.com/intl/zh-CN/apis/gdata/index.html
With these features, we can integrate and use them in applications to save development and o & M costs. For large commercial applications, it is also appropriate to pay a certain amount of fees.
Reference: http://www.infoq.com/cn/news/2011/09/DOT-NET-API-Client-Library
For libraries in other languages, refer:
Http://code.google.com/intl/zh-CN/apis/discovery/libraries.html