Last active
December 19, 2015 17:59
-
-
Save zpinter/5995641 to your computer and use it in GitHub Desktop.
tech.hulu.com - Tips and Highlights from Developing Mobile apps for Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public async Task<string> Nonce() | |
{ | |
var res = await ExecuteSiteRequest(new NonceRequest()); | |
return res.Value; | |
} | |
public async Task<SiteUser> Login(string username, string password) | |
{ | |
var req = new AuthenticateRequest(username, password, await Nonce()); | |
var res = await ExecuteSiteRequest(req); | |
var user = new SiteUser(res); | |
return user; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment