There are a few ways in which you can integrate your website or application with social media or other websites. Perhaps the easiest and most used way are the widgets or embedded HTML snippets. The Twitter embedded timeline is arguably the most famous example. It’s easy to use and doesn’t require much (if any) programming skills. It provides a familiar user experience that people know from using other websites. In many cases this is just what you need, but what if you wanted to make it look and feel like any other part of your website? In this post I will show you way of doing just that with WordPress blog posts.
TL;DR: because actions (or code) speak louder than words, have a look at the code here. I am also working on a project to create a C# SDK for WordPress. Follow my progress on this repository.
Before digging into the code, this is the final result (I have chosen ASP.NET MVC as the front end but there’s no special requirement for the WordPress API):
Unlike the other Web APIs that I have discussed previously, this one is less complex. One of the reasons is that there’s less private information. A lot of useful information is meant to be shared which is convenient for development as there’s no process of authentication and authorization for some endpoints. The documentation of the API is fairly good so in general you shouldn’t have a lot of problems working with it. For my business case, I was interested in this endpoint:
https://public-api.wordpress.com/rest/v1.1/sites/$site/posts/
As you can see (and as documentation suggests clearly), you need to configure the $site variable. This variable can either be the blog ID or the site domain. In my case, this will be the following:
https://public-api.wordpress.com/rest/v1.1/sites/hendrikbulens.wordpress.com/posts/
If you didn’t want to automate a part of this process, you would be done already. Go ahead, the URL mentioned above is a valid one and ready for use! The data you see are all my posts formatted in JSON. The next step is to programatically retrieve the data from this endpoint. Once we have the raw data we’ll have to convert it into .NET – friendly types. Using Visual Studio’s SPECIAL PASTE** utility we can easily transform JSON objects to .NET. With the **JSON.NET NuGet package, it only takes one line of code to deserialize JSON to .NET. The following piece of code handles all of this. Note: in case you didn’t have it installed yet, please get the very useful JSON.NET package fro NuGet. Run the following command in the package manager console:
Install-Package Newtonsoft.Json
The following piece of code handles all of the work that needs to be done:
First thing that we have to do is to download the output from the HTTP Request, which will return a string. Knowing that this is actually JSON, we can deserialize this raw text in custom types that I have generated earlier. By copying the JSON string text on the clipboard and using the paste special feature in VS, it will automatically create all necessary types for you:

Ultimately, I have added an extra layer of abstraction to hide the JSON.NET types from the rest of the business and UI layer. This is not necessary of course but I like to hide as much information as possible. In this case, I just need the URL of the post, the title, the publishing date and the number of comments. However, there is much more information you can retrieve from this endpoint. I suggest you read the REST API or you can try for yourself of course. One utility that I finally would like to share is the CharacterLimit extension method, which comes in handy for when you want to limit the amount of characters in a string and indicate there’s more by using an ellipsis. The result is also visible in the screenshot above.
As soon as the counter hits the length variable, it will trim all characters beyond this point in the string and will replace it by “…”. It will also keep in mind that it will only cut off words and not just characters.
Useful utility for web development I’d say! Happy coding!
Reblogged this on Dinesh Ram Kali..
[…] https://hendrikbulens.wordpress.com/2015/05/05/c-and-the-wordpress-api/ […]
Can you post how you’re instantiating the WordPressBlog in WordPressBlog blogPosts = JsonConvert.DeserializeObject(response), please? In a model?
[…] Source: Retrieving blog posts using C# and the WordPress REST API […]
Thanks for the post, I was seeking a reference about this and helped me a lot…!!
Reblogged this on Javad Alan's Blog.
Great post, thanks. But how do I know what the v1.1 part of the URL should be? When I use your URL (substituting my site name) I get 400 Bad Request. I thought it might be due to the version in the URL? Any ideas? Thanks!
[…] PHP to retrieve posts from WordPress. Hendrik Bulens chose to use ASP.NET MVC as the front end to retrieve the latest blog posts from […]
I can’t get this to work… I don’t know what is required in the wordpress Class? I have pasted in but I’m missing something and I don’t know what?
Could you post your WordPressBlog Class, I can’t seem to get it working and I’m not sure why?
Thanks for the post 🙂
It seems we have now a lot of possibilities with WordPress API. Really nice! Thank you for sharing!