Skip to content

Instantly share code, notes, and snippets.

@zpinter
Last active December 19, 2015 17:59
Show Gist options
  • Save zpinter/5995641 to your computer and use it in GitHub Desktop.
Save zpinter/5995641 to your computer and use it in GitHub Desktop.
tech.hulu.com - Tips and Highlights from Developing Mobile apps for Windows
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