This is a Xamarin.Forms app (supporting Android and iOS) designed to turn easily WordPress Blogs / Sites into nice little apps.
It's built on
working and planned features for WordPressXF:
- Show posts
- Show comments
- Custom app icons
- Use SplashScreen
- Sign In
- Add comment
Since WordPress 4.7 the REST API has been integrated into the core so there's no need for any plugins to get basic functionality. If you want to access protected endpoints, this library supports authentication through JSON Web Tokens (JWT) (plugin required).
Just clone or download the repo and open it in Visual Studio. Before you can build you'll need to enter the URL to your WordPress blog/site in the file WordPressXF/WordPressXF/WordPressXF/Common/Statics.cs. And don't forget to add /wp-json/
at the end.
namespace WordPressXF.Common
{
public static class Statics
{
public static string WordpressUrl = "https://wordpress.org/news/wp-json/";
// other properties
}
}