An library that works with the Windows Universal Apps Platfrom to deliver Tumblr APIs for your projects.
git submodule add https://github.com/KarnSaheb/TumblrUniversal.git
Then manually add the project to your UAP solution.
SQLite for the Universal Windows Platform
Create a new instance of the Client object with the API and API secret keys:
var client = new Tumblr.Universal.Core.TumblrClient("API_KEY", "API_SECRET_KEY");
Send username and password:
await client.Authentication.RequestAccessToken("USERNAME", "PASSWORD");
Validate sign in if no exceptions are thrown:
if (client.SignedIn)