# wordpress-com-csharp-rest **Repository Path**: mirrors_Automattic/wordpress-com-csharp-rest ## Basic Information - **Project Name**: wordpress-com-csharp-rest - **Description**: WordPress.com REST Client for C # apps. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-05-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # WordPress REST Client for C Sharp ## Usage Easiest way to use the library is by checking out the project and referencing it into your solution. You should also install the Rest Sharp library into your project by getting it with NuGet Packages manager (Refence id: RestSharp). WordPressOauthAuthenticator oAuthAuthenticator = new WordPressOauthAuthenticator("username", "pass", "oAuthAppId", "oAuthAppSecret", "oAuthAppRedirect"); WordPressRestClient wpRestClient = new WordPressRestClient(oAuthAuthenticator); wpRestClient.get("me", `callback`); wpRestClient.getNotifications(`callback`);