home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
MediaPortal 1
MediaPortal 1 Plugins
Netflix Manager (Updated 02/10/07)
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Armyb77" data-source="post: 136798" data-attributes="member: 30007"><p>hobbes487,</p><p>I know you probably did but did you remember to add the cookie container in the HTTPWEBREQUEST?</p><p></p><p>Here is an example from another website:</p><p>[CODE]Dim uri As New Uri(http://www.somewebsite.com)</p><p></p><p>Dim cookieUri As New Uri(http://www.somewebsite.com/informationtoget.htm)</p><p></p><p>Dim request As HttpWebRequest = WebRequest.Create(uri)</p><p></p><p>request = CType(System.Net.WebRequest.Create(uri), System.Net.HttpWebRequest)</p><p></p><p>request.CookieContainer = New System.Net.CookieContainer</p><p></p><p>' this is the cookie saved from the cookie file in IE</p><p></p><p>request.CookieContainer.SetCookies(cookieUri, "TB=AjOp5WatJDMyIjO4l2Zy9mQ6YDMzMTM")</p><p></p><p>Dim response As HttpWebResponse = request.GetResponse()</p><p></p><p>Dim reader As StreamReader = New StreamReader(response.GetResponseStream())</p><p></p><p>Dim str As String = reader.ReadToEnd[/CODE]</p><p></p><p>I don't know if that will help. Regardless I believe that the request is going to have to specify the IE engine since firefox and such is not compatible with WMP without using the IE Engine.</p><p></p><p>Hope this helps a little, unfortunately i'm out of minutes with Netflix until the 30th so i'm no longer to play around to help out.</p><p></p><p>Thanks,</p><p>Armyb77</p></blockquote><p></p>
[QUOTE="Armyb77, post: 136798, member: 30007"] hobbes487, I know you probably did but did you remember to add the cookie container in the HTTPWEBREQUEST? Here is an example from another website: [CODE]Dim uri As New Uri(http://www.somewebsite.com) Dim cookieUri As New Uri(http://www.somewebsite.com/informationtoget.htm) Dim request As HttpWebRequest = WebRequest.Create(uri) request = CType(System.Net.WebRequest.Create(uri), System.Net.HttpWebRequest) request.CookieContainer = New System.Net.CookieContainer ' this is the cookie saved from the cookie file in IE request.CookieContainer.SetCookies(cookieUri, "TB=AjOp5WatJDMyIjO4l2Zy9mQ6YDMzMTM") Dim response As HttpWebResponse = request.GetResponse() Dim reader As StreamReader = New StreamReader(response.GetResponseStream()) Dim str As String = reader.ReadToEnd[/CODE] I don't know if that will help. Regardless I believe that the request is going to have to specify the IE engine since firefox and such is not compatible with WMP without using the IE Engine. Hope this helps a little, unfortunately i'm out of minutes with Netflix until the 30th so i'm no longer to play around to help out. Thanks, Armyb77 [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
MediaPortal 1
MediaPortal 1 Plugins
Netflix Manager (Updated 02/10/07)
Contact us
RSS
Top
Bottom