Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.15 KB

RecentChanges API.md

File metadata and controls

24 lines (18 loc) · 1.15 KB

RecentChanges API

The RecentChanges API serves to get information about recent changes made to OpenLibrary's data.

For more usage examples of this API, see MiscellaneousExamples.


To make a request to the RecentChanges API, use the OpenLibraryClient

OpenLibraryClient client = new OpenLibraryClient();
var parameters = new List<KeyValuePair<string,string>>() { ... };

OLRecentChangesData recentChanges = await client.RecentChanges.GetRecentChangesAsync(year:"2018", month:"08", kind:"merge-authors", parameters);

or the static OLRecentChangesLoader methods:

HttpClient httpClient = new HttpClient();
OLRecentChangesData recentChanges = await OLRecentChangesLoader.RecentChanges.GetRecentChangesAsync(year:"2018", month:"08", day:"01", parameters);

For valid parameters, see the link above. Alternatively, see OpenLibraryUtility's Maps.