From 79cfbb17688a083eee3caeb88403659fa23774df Mon Sep 17 00:00:00 2001 From: LukePulverenti Luke Pulverenti luke pulverenti Date: Thu, 6 Sep 2012 14:42:21 -0400 Subject: Move userId to post data --- MediaBrowser.ApiInteraction/ApiClient.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.ApiInteraction') diff --git a/MediaBrowser.ApiInteraction/ApiClient.cs b/MediaBrowser.ApiInteraction/ApiClient.cs index 48f43e03be..f8c0dc761b 100644 --- a/MediaBrowser.ApiInteraction/ApiClient.cs +++ b/MediaBrowser.ApiInteraction/ApiClient.cs @@ -657,7 +657,9 @@ namespace MediaBrowser.ApiInteraction string url = ApiUrl + "/UserAuthentication?userId=" + userId; url += "&dataformat=" + SerializationFormat.ToString(); - HttpContent content = new StringContent("password=" + password, Encoding.UTF8, "application/x-www-form-urlencoded"); + string postContent = string.Format("userid={0}&password={1}", userId, password); + + HttpContent content = new StringContent(postContent, Encoding.UTF8, "application/x-www-form-urlencoded"); HttpResponseMessage msg = await HttpClient.PostAsync(url, content).ConfigureAwait(false); -- cgit v1.2.3