<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>LinqToTwitter Work Item Rss Feed</title><link>http://www.codeplex.com/LinqToTwitter/WorkItem/List.aspx</link><description>LinqToTwitter Work Item Rss Description</description><item><title>Commented Unassigned: Conflict between LinqToTwitter Gzip requests and default GZip requests [32553]</title><link>http://linqtotwitter.codeplex.com/workitem/32553</link><description>Hi, &lt;br /&gt;&lt;br /&gt;There is an small conflict between the GZip logic for built-in in LinqToTwitter and the registered WebRequest creators. Mainly if they handle GZip.&lt;br /&gt;&lt;br /&gt;The default Creator is WebRequestCreator.BrowserHttp &amp;#40;http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;system.net.browser.webrequestcreator.browserhttp&amp;#40;v&amp;#61;vs.95&amp;#41;.aspx&amp;#41; can be overwritten once by a class  that implements IWebRequestCreate &amp;#40;http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;system.net.iwebrequestcreate&amp;#40;v&amp;#61;vs.110&amp;#41;.aspx&amp;#41; by using the method WebRequest.RegisterPrefix &amp;#40;WebRequest.RegisterPrefix&amp;#41;. By doing this,  then all the requests of the application will use the given handler. &lt;br /&gt;&lt;br /&gt;In particular, my sample app registers a WebCreators from a third party lib &amp;#40; https&amp;#58;&amp;#47;&amp;#47;github.com&amp;#47;dotMorten&amp;#47;SharpGIS.GZipWebClient &amp;#41; which we have been using since all the requests are GZip compressed. &lt;br /&gt;&lt;br /&gt;        private void Application_Launching&amp;#40;object sender, LaunchingEventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            WebRequest.RegisterPrefix&amp;#40;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;&amp;#34;, SharpGIS.WebRequestCreator.GZip&amp;#41;&amp;#59;&lt;br /&gt;            WebRequest.RegisterPrefix&amp;#40;&amp;#34;https&amp;#58;&amp;#47;&amp;#47;&amp;#34;, SharpGIS.WebRequestCreator.GZip&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;By setting the previous code in my app, the following code stops working properly &amp;#40;regardless I set UseCompression to false or true&amp;#41;&amp;#58;&lt;br /&gt;&lt;br /&gt;            _pinAuthorizer &amp;#61; new PinAuthorizer&lt;br /&gt;            &amp;#123;&lt;br /&gt;                Credentials &amp;#61; new InMemoryCredentials&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    ConsumerKey &amp;#61; TwitterApiClient.Instance.ConsumerKey,&lt;br /&gt;                    ConsumerSecret &amp;#61; TwitterApiClient.Instance.ConsumerSecret&lt;br /&gt;                &amp;#125;,&lt;br /&gt;                UseCompression &amp;#61; true,&lt;br /&gt;                GoToTwitterAuthorization &amp;#61; pageLink &amp;#61;&amp;#62; Dispatcher.BeginInvoke&amp;#40;&amp;#40;&amp;#41; &amp;#61;&amp;#62; OAuthWebBrowser.Navigate&amp;#40;new Uri&amp;#40;pageLink, UriKind.Absolute&amp;#41;&amp;#41;&amp;#41;&lt;br /&gt;            &amp;#125;&amp;#59;&lt;br /&gt;&lt;br /&gt;A quick workaround is to implement the IWebRequestCreate in a custom class and set it up as request creator. This custom class will use the default RequestCreator for any request to twitter and all other requests can use the GZipWebRequestCreator. &lt;br /&gt;&lt;br /&gt;Attached is the project sample for you to check.&lt;br /&gt;Regards,&lt;br /&gt;Herber&lt;br /&gt;Comments: Thanks.&amp;#10;&amp;#10;Joe</description><author>JoeMayo</author><pubDate>Wed, 15 May 2013 16:44:30 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: Conflict between LinqToTwitter Gzip requests and default GZip requests [32553] 20130515044430P</guid></item><item><title>Created Unassigned: Conflict between LinqToTwitter Gzip requests and default GZip requests [32553]</title><link>http://linqtotwitter.codeplex.com/workitem/32553</link><description>Hi, &lt;br /&gt;&lt;br /&gt;There is an small conflict between the GZip logic for built-in in LinqToTwitter and the registered WebRequest creators. Mainly if they handle GZip.&lt;br /&gt;&lt;br /&gt;The default Creator is WebRequestCreator.BrowserHttp &amp;#40;http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;system.net.browser.webrequestcreator.browserhttp&amp;#40;v&amp;#61;vs.95&amp;#41;.aspx&amp;#41; can be overwritten once by a class  that implements IWebRequestCreate &amp;#40;http&amp;#58;&amp;#47;&amp;#47;msdn.microsoft.com&amp;#47;en-us&amp;#47;library&amp;#47;system.net.iwebrequestcreate&amp;#40;v&amp;#61;vs.110&amp;#41;.aspx&amp;#41; by using the method WebRequest.RegisterPrefix &amp;#40;WebRequest.RegisterPrefix&amp;#41;. By doing this,  then all the requests of the application will use the given handler. &lt;br /&gt;&lt;br /&gt;In particular, my sample app registers a WebCreators from a third party lib &amp;#40; https&amp;#58;&amp;#47;&amp;#47;github.com&amp;#47;dotMorten&amp;#47;SharpGIS.GZipWebClient &amp;#41; which we have been using since all the requests are GZip compressed. &lt;br /&gt;&lt;br /&gt;        private void Application_Launching&amp;#40;object sender, LaunchingEventArgs e&amp;#41;&lt;br /&gt;        &amp;#123;&lt;br /&gt;            WebRequest.RegisterPrefix&amp;#40;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;&amp;#34;, SharpGIS.WebRequestCreator.GZip&amp;#41;&amp;#59;&lt;br /&gt;            WebRequest.RegisterPrefix&amp;#40;&amp;#34;https&amp;#58;&amp;#47;&amp;#47;&amp;#34;, SharpGIS.WebRequestCreator.GZip&amp;#41;&amp;#59;&lt;br /&gt;        &amp;#125;&lt;br /&gt;&lt;br /&gt;By setting the previous code in my app, the following code stops working properly &amp;#40;regardless I set UseCompression to false or true&amp;#41;&amp;#58;&lt;br /&gt;&lt;br /&gt;            _pinAuthorizer &amp;#61; new PinAuthorizer&lt;br /&gt;            &amp;#123;&lt;br /&gt;                Credentials &amp;#61; new InMemoryCredentials&lt;br /&gt;                &amp;#123;&lt;br /&gt;                    ConsumerKey &amp;#61; TwitterApiClient.Instance.ConsumerKey,&lt;br /&gt;                    ConsumerSecret &amp;#61; TwitterApiClient.Instance.ConsumerSecret&lt;br /&gt;                &amp;#125;,&lt;br /&gt;                UseCompression &amp;#61; true,&lt;br /&gt;                GoToTwitterAuthorization &amp;#61; pageLink &amp;#61;&amp;#62; Dispatcher.BeginInvoke&amp;#40;&amp;#40;&amp;#41; &amp;#61;&amp;#62; OAuthWebBrowser.Navigate&amp;#40;new Uri&amp;#40;pageLink, UriKind.Absolute&amp;#41;&amp;#41;&amp;#41;&lt;br /&gt;            &amp;#125;&amp;#59;&lt;br /&gt;&lt;br /&gt;A quick workaround is to implement the IWebRequestCreate in a custom class and set it up as request creator. This custom class will use the default RequestCreator for any request to twitter and all other requests can use the GZipWebRequestCreator. &lt;br /&gt;&lt;br /&gt;Attached is the project sample for you to check.&lt;br /&gt;Regards,&lt;br /&gt;Herber&lt;br /&gt;</description><author>hmadrigal</author><pubDate>Wed, 15 May 2013 16:12:08 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Conflict between LinqToTwitter Gzip requests and default GZip requests [32553] 20130515041208P</guid></item><item><title>Closed Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552]</title><link>http://linqtotwitter.codeplex.com/workitem/32552</link><description>I&amp;#39;m using a PIN Authorizer in a WPF application. &lt;br /&gt;&lt;br /&gt;I&amp;#39;m currently displaying the page link i get in my GoToTwitterAuthorization callback in an embedded wpf webbrowser control and calling BeginAuthorize on the pin authorizer. When I call CompleteAuthorize on the pin authorizer passing in the pin, I get a 401 back. Using Fiddler I grabbed the request header and it looks like this&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;GET https&amp;#58;&amp;#47;&amp;#47;api.twitter.com&amp;#47;oauth&amp;#47;access_token HTTP&amp;#47;1.1&lt;br /&gt;Authorization&amp;#58; OAuth oauth_callback&amp;#61;&amp;#34;oob&amp;#34;,oauth_consumer_key&amp;#61;&amp;#34;&amp;#60;removed&amp;#62;&amp;#34;,oauth_nonce&amp;#61;&amp;#34;659810&amp;#34;,oauth_signature_method&amp;#61;&amp;#34;HMAC-SHA1&amp;#34;,oauth_timestamp&amp;#61;&amp;#34;1368457219&amp;#34;,oauth_token&amp;#61;&amp;#34;2JTvw9nh7uagYfEk1VKrEqLS6hkjVoE2ifPygCdjQ&amp;#34;,oauth_version&amp;#61;&amp;#34;1.0&amp;#34;,oauth_signature&amp;#61;&amp;#34;NNrxwVToX2MM0o5mQ194NRx1vWg&amp;#37;3D&amp;#34;&lt;br /&gt;Accept-Encoding&amp;#58; deflate,gzip&lt;br /&gt;Host&amp;#58; api.twitter.com&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;and here&amp;#39;s the response&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34; encoding&amp;#61;&amp;#34;UTF-8&amp;#34;&amp;#63;&amp;#62;&lt;br /&gt;&amp;#60;hash&amp;#62;&lt;br /&gt;  &amp;#60;error&amp;#62;Required oauth_verifier parameter not provided&amp;#60;&amp;#47;error&amp;#62;&lt;br /&gt;  &amp;#60;request&amp;#62;&amp;#47;oauth&amp;#47;access_token&amp;#60;&amp;#47;request&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;hash&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;If I rejigger my code to work with a call to pinAuthorizer.Authorize&amp;#40;&amp;#41; and using an external browser everything works correctly.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description><author>JoeMayo</author><pubDate>Mon, 13 May 2013 20:18:54 GMT</pubDate><guid isPermaLink="false">Closed Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552] 20130513081854P</guid></item><item><title>Commented Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552]</title><link>http://linqtotwitter.codeplex.com/workitem/32552</link><description>I&amp;#39;m using a PIN Authorizer in a WPF application. &lt;br /&gt;&lt;br /&gt;I&amp;#39;m currently displaying the page link i get in my GoToTwitterAuthorization callback in an embedded wpf webbrowser control and calling BeginAuthorize on the pin authorizer. When I call CompleteAuthorize on the pin authorizer passing in the pin, I get a 401 back. Using Fiddler I grabbed the request header and it looks like this&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;GET https&amp;#58;&amp;#47;&amp;#47;api.twitter.com&amp;#47;oauth&amp;#47;access_token HTTP&amp;#47;1.1&lt;br /&gt;Authorization&amp;#58; OAuth oauth_callback&amp;#61;&amp;#34;oob&amp;#34;,oauth_consumer_key&amp;#61;&amp;#34;&amp;#60;removed&amp;#62;&amp;#34;,oauth_nonce&amp;#61;&amp;#34;659810&amp;#34;,oauth_signature_method&amp;#61;&amp;#34;HMAC-SHA1&amp;#34;,oauth_timestamp&amp;#61;&amp;#34;1368457219&amp;#34;,oauth_token&amp;#61;&amp;#34;2JTvw9nh7uagYfEk1VKrEqLS6hkjVoE2ifPygCdjQ&amp;#34;,oauth_version&amp;#61;&amp;#34;1.0&amp;#34;,oauth_signature&amp;#61;&amp;#34;NNrxwVToX2MM0o5mQ194NRx1vWg&amp;#37;3D&amp;#34;&lt;br /&gt;Accept-Encoding&amp;#58; deflate,gzip&lt;br /&gt;Host&amp;#58; api.twitter.com&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;and here&amp;#39;s the response&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34; encoding&amp;#61;&amp;#34;UTF-8&amp;#34;&amp;#63;&amp;#62;&lt;br /&gt;&amp;#60;hash&amp;#62;&lt;br /&gt;  &amp;#60;error&amp;#62;Required oauth_verifier parameter not provided&amp;#60;&amp;#47;error&amp;#62;&lt;br /&gt;  &amp;#60;request&amp;#62;&amp;#47;oauth&amp;#47;access_token&amp;#60;&amp;#47;request&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;hash&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;If I rejigger my code to work with a call to pinAuthorizer.Authorize&amp;#40;&amp;#41; and using an external browser everything works correctly.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Comments: Do you have the latest NuGet&amp;#63; I recall updating just days ago&amp;#58;&amp;#10;&amp;#10;Tools &amp;#124; Extensions and Updates</description><author>JoeMayo</author><pubDate>Mon, 13 May 2013 19:57:51 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552] 20130513075751P</guid></item><item><title>Commented Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552]</title><link>http://linqtotwitter.codeplex.com/workitem/32552</link><description>I&amp;#39;m using a PIN Authorizer in a WPF application. &lt;br /&gt;&lt;br /&gt;I&amp;#39;m currently displaying the page link i get in my GoToTwitterAuthorization callback in an embedded wpf webbrowser control and calling BeginAuthorize on the pin authorizer. When I call CompleteAuthorize on the pin authorizer passing in the pin, I get a 401 back. Using Fiddler I grabbed the request header and it looks like this&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;GET https&amp;#58;&amp;#47;&amp;#47;api.twitter.com&amp;#47;oauth&amp;#47;access_token HTTP&amp;#47;1.1&lt;br /&gt;Authorization&amp;#58; OAuth oauth_callback&amp;#61;&amp;#34;oob&amp;#34;,oauth_consumer_key&amp;#61;&amp;#34;&amp;#60;removed&amp;#62;&amp;#34;,oauth_nonce&amp;#61;&amp;#34;659810&amp;#34;,oauth_signature_method&amp;#61;&amp;#34;HMAC-SHA1&amp;#34;,oauth_timestamp&amp;#61;&amp;#34;1368457219&amp;#34;,oauth_token&amp;#61;&amp;#34;2JTvw9nh7uagYfEk1VKrEqLS6hkjVoE2ifPygCdjQ&amp;#34;,oauth_version&amp;#61;&amp;#34;1.0&amp;#34;,oauth_signature&amp;#61;&amp;#34;NNrxwVToX2MM0o5mQ194NRx1vWg&amp;#37;3D&amp;#34;&lt;br /&gt;Accept-Encoding&amp;#58; deflate,gzip&lt;br /&gt;Host&amp;#58; api.twitter.com&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;and here&amp;#39;s the response&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34; encoding&amp;#61;&amp;#34;UTF-8&amp;#34;&amp;#63;&amp;#62;&lt;br /&gt;&amp;#60;hash&amp;#62;&lt;br /&gt;  &amp;#60;error&amp;#62;Required oauth_verifier parameter not provided&amp;#60;&amp;#47;error&amp;#62;&lt;br /&gt;  &amp;#60;request&amp;#62;&amp;#47;oauth&amp;#47;access_token&amp;#60;&amp;#47;request&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;hash&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;If I rejigger my code to work with a call to pinAuthorizer.Authorize&amp;#40;&amp;#41; and using an external browser everything works correctly.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Comments: getting the latest version did solve this problem. thanks.</description><author>jmpinchot</author><pubDate>Mon, 13 May 2013 19:33:46 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552] 20130513073346P</guid></item><item><title>Commented Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552]</title><link>http://linqtotwitter.codeplex.com/workitem/32552</link><description>I&amp;#39;m using a PIN Authorizer in a WPF application. &lt;br /&gt;&lt;br /&gt;I&amp;#39;m currently displaying the page link i get in my GoToTwitterAuthorization callback in an embedded wpf webbrowser control and calling BeginAuthorize on the pin authorizer. When I call CompleteAuthorize on the pin authorizer passing in the pin, I get a 401 back. Using Fiddler I grabbed the request header and it looks like this&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;GET https&amp;#58;&amp;#47;&amp;#47;api.twitter.com&amp;#47;oauth&amp;#47;access_token HTTP&amp;#47;1.1&lt;br /&gt;Authorization&amp;#58; OAuth oauth_callback&amp;#61;&amp;#34;oob&amp;#34;,oauth_consumer_key&amp;#61;&amp;#34;&amp;#60;removed&amp;#62;&amp;#34;,oauth_nonce&amp;#61;&amp;#34;659810&amp;#34;,oauth_signature_method&amp;#61;&amp;#34;HMAC-SHA1&amp;#34;,oauth_timestamp&amp;#61;&amp;#34;1368457219&amp;#34;,oauth_token&amp;#61;&amp;#34;2JTvw9nh7uagYfEk1VKrEqLS6hkjVoE2ifPygCdjQ&amp;#34;,oauth_version&amp;#61;&amp;#34;1.0&amp;#34;,oauth_signature&amp;#61;&amp;#34;NNrxwVToX2MM0o5mQ194NRx1vWg&amp;#37;3D&amp;#34;&lt;br /&gt;Accept-Encoding&amp;#58; deflate,gzip&lt;br /&gt;Host&amp;#58; api.twitter.com&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;and here&amp;#39;s the response&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34; encoding&amp;#61;&amp;#34;UTF-8&amp;#34;&amp;#63;&amp;#62;&lt;br /&gt;&amp;#60;hash&amp;#62;&lt;br /&gt;  &amp;#60;error&amp;#62;Required oauth_verifier parameter not provided&amp;#60;&amp;#47;error&amp;#62;&lt;br /&gt;  &amp;#60;request&amp;#62;&amp;#47;oauth&amp;#47;access_token&amp;#60;&amp;#47;request&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;hash&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;If I rejigger my code to work with a call to pinAuthorizer.Authorize&amp;#40;&amp;#41; and using an external browser everything works correctly.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Comments: weird, VS 2012 doesn&amp;#39;t show me that in the package manager. I&amp;#39;ll grab the latest via the console and try it out.</description><author>jmpinchot</author><pubDate>Mon, 13 May 2013 19:12:03 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552] 20130513071203P</guid></item><item><title>Commented Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552]</title><link>http://linqtotwitter.codeplex.com/workitem/32552</link><description>I&amp;#39;m using a PIN Authorizer in a WPF application. &lt;br /&gt;&lt;br /&gt;I&amp;#39;m currently displaying the page link i get in my GoToTwitterAuthorization callback in an embedded wpf webbrowser control and calling BeginAuthorize on the pin authorizer. When I call CompleteAuthorize on the pin authorizer passing in the pin, I get a 401 back. Using Fiddler I grabbed the request header and it looks like this&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;GET https&amp;#58;&amp;#47;&amp;#47;api.twitter.com&amp;#47;oauth&amp;#47;access_token HTTP&amp;#47;1.1&lt;br /&gt;Authorization&amp;#58; OAuth oauth_callback&amp;#61;&amp;#34;oob&amp;#34;,oauth_consumer_key&amp;#61;&amp;#34;&amp;#60;removed&amp;#62;&amp;#34;,oauth_nonce&amp;#61;&amp;#34;659810&amp;#34;,oauth_signature_method&amp;#61;&amp;#34;HMAC-SHA1&amp;#34;,oauth_timestamp&amp;#61;&amp;#34;1368457219&amp;#34;,oauth_token&amp;#61;&amp;#34;2JTvw9nh7uagYfEk1VKrEqLS6hkjVoE2ifPygCdjQ&amp;#34;,oauth_version&amp;#61;&amp;#34;1.0&amp;#34;,oauth_signature&amp;#61;&amp;#34;NNrxwVToX2MM0o5mQ194NRx1vWg&amp;#37;3D&amp;#34;&lt;br /&gt;Accept-Encoding&amp;#58; deflate,gzip&lt;br /&gt;Host&amp;#58; api.twitter.com&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;and here&amp;#39;s the response&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34; encoding&amp;#61;&amp;#34;UTF-8&amp;#34;&amp;#63;&amp;#62;&lt;br /&gt;&amp;#60;hash&amp;#62;&lt;br /&gt;  &amp;#60;error&amp;#62;Required oauth_verifier parameter not provided&amp;#60;&amp;#47;error&amp;#62;&lt;br /&gt;  &amp;#60;request&amp;#62;&amp;#47;oauth&amp;#47;access_token&amp;#60;&amp;#47;request&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;hash&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;If I rejigger my code to work with a call to pinAuthorizer.Authorize&amp;#40;&amp;#41; and using an external browser everything works correctly.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Comments: http&amp;#58;&amp;#47;&amp;#47;nuget.org&amp;#47;packages&amp;#47;linqtotwitter</description><author>JoeMayo</author><pubDate>Mon, 13 May 2013 18:38:55 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552] 20130513063855P</guid></item><item><title>Commented Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552]</title><link>http://linqtotwitter.codeplex.com/workitem/32552</link><description>I&amp;#39;m using a PIN Authorizer in a WPF application. &lt;br /&gt;&lt;br /&gt;I&amp;#39;m currently displaying the page link i get in my GoToTwitterAuthorization callback in an embedded wpf webbrowser control and calling BeginAuthorize on the pin authorizer. When I call CompleteAuthorize on the pin authorizer passing in the pin, I get a 401 back. Using Fiddler I grabbed the request header and it looks like this&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;GET https&amp;#58;&amp;#47;&amp;#47;api.twitter.com&amp;#47;oauth&amp;#47;access_token HTTP&amp;#47;1.1&lt;br /&gt;Authorization&amp;#58; OAuth oauth_callback&amp;#61;&amp;#34;oob&amp;#34;,oauth_consumer_key&amp;#61;&amp;#34;&amp;#60;removed&amp;#62;&amp;#34;,oauth_nonce&amp;#61;&amp;#34;659810&amp;#34;,oauth_signature_method&amp;#61;&amp;#34;HMAC-SHA1&amp;#34;,oauth_timestamp&amp;#61;&amp;#34;1368457219&amp;#34;,oauth_token&amp;#61;&amp;#34;2JTvw9nh7uagYfEk1VKrEqLS6hkjVoE2ifPygCdjQ&amp;#34;,oauth_version&amp;#61;&amp;#34;1.0&amp;#34;,oauth_signature&amp;#61;&amp;#34;NNrxwVToX2MM0o5mQ194NRx1vWg&amp;#37;3D&amp;#34;&lt;br /&gt;Accept-Encoding&amp;#58; deflate,gzip&lt;br /&gt;Host&amp;#58; api.twitter.com&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;and here&amp;#39;s the response&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34; encoding&amp;#61;&amp;#34;UTF-8&amp;#34;&amp;#63;&amp;#62;&lt;br /&gt;&amp;#60;hash&amp;#62;&lt;br /&gt;  &amp;#60;error&amp;#62;Required oauth_verifier parameter not provided&amp;#60;&amp;#47;error&amp;#62;&lt;br /&gt;  &amp;#60;request&amp;#62;&amp;#47;oauth&amp;#47;access_token&amp;#60;&amp;#47;request&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;hash&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;If I rejigger my code to work with a call to pinAuthorizer.Authorize&amp;#40;&amp;#41; and using an external browser everything works correctly.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Comments: I&amp;#39;m on version 2.1.3.0. NuGet certainly doesn&amp;#39;t think there&amp;#39;s a newer version available.</description><author>jmpinchot</author><pubDate>Mon, 13 May 2013 18:09:34 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552] 20130513060934P</guid></item><item><title>Commented Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552]</title><link>http://linqtotwitter.codeplex.com/workitem/32552</link><description>I&amp;#39;m using a PIN Authorizer in a WPF application. &lt;br /&gt;&lt;br /&gt;I&amp;#39;m currently displaying the page link i get in my GoToTwitterAuthorization callback in an embedded wpf webbrowser control and calling BeginAuthorize on the pin authorizer. When I call CompleteAuthorize on the pin authorizer passing in the pin, I get a 401 back. Using Fiddler I grabbed the request header and it looks like this&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;GET https&amp;#58;&amp;#47;&amp;#47;api.twitter.com&amp;#47;oauth&amp;#47;access_token HTTP&amp;#47;1.1&lt;br /&gt;Authorization&amp;#58; OAuth oauth_callback&amp;#61;&amp;#34;oob&amp;#34;,oauth_consumer_key&amp;#61;&amp;#34;&amp;#60;removed&amp;#62;&amp;#34;,oauth_nonce&amp;#61;&amp;#34;659810&amp;#34;,oauth_signature_method&amp;#61;&amp;#34;HMAC-SHA1&amp;#34;,oauth_timestamp&amp;#61;&amp;#34;1368457219&amp;#34;,oauth_token&amp;#61;&amp;#34;2JTvw9nh7uagYfEk1VKrEqLS6hkjVoE2ifPygCdjQ&amp;#34;,oauth_version&amp;#61;&amp;#34;1.0&amp;#34;,oauth_signature&amp;#61;&amp;#34;NNrxwVToX2MM0o5mQ194NRx1vWg&amp;#37;3D&amp;#34;&lt;br /&gt;Accept-Encoding&amp;#58; deflate,gzip&lt;br /&gt;Host&amp;#58; api.twitter.com&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;and here&amp;#39;s the response&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34; encoding&amp;#61;&amp;#34;UTF-8&amp;#34;&amp;#63;&amp;#62;&lt;br /&gt;&amp;#60;hash&amp;#62;&lt;br /&gt;  &amp;#60;error&amp;#62;Required oauth_verifier parameter not provided&amp;#60;&amp;#47;error&amp;#62;&lt;br /&gt;  &amp;#60;request&amp;#62;&amp;#47;oauth&amp;#47;access_token&amp;#60;&amp;#47;request&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;hash&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;If I rejigger my code to work with a call to pinAuthorizer.Authorize&amp;#40;&amp;#41; and using an external browser everything works correctly.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Comments: Twitter recently changed their oauth rules and I updated LINQ to Twitter to explicitly provide oauth_verifier. Are you on the latest release&amp;#63;</description><author>JoeMayo</author><pubDate>Mon, 13 May 2013 17:50:55 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552] 20130513055055P</guid></item><item><title>Created Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552]</title><link>http://linqtotwitter.codeplex.com/workitem/32552</link><description>I&amp;#39;m using a PIN Authorizer in a WPF application. &lt;br /&gt;&lt;br /&gt;I&amp;#39;m currently displaying the page link i get in my GoToTwitterAuthorization callback in an embedded wpf webbrowser control and calling BeginAuthorize on the pin authorizer. When I call CompleteAuthorize on the pin authorizer passing in the pin, I get a 401 back. Using Fiddler I grabbed the request header and it looks like this&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;GET https&amp;#58;&amp;#47;&amp;#47;api.twitter.com&amp;#47;oauth&amp;#47;access_token HTTP&amp;#47;1.1&lt;br /&gt;Authorization&amp;#58; OAuth oauth_callback&amp;#61;&amp;#34;oob&amp;#34;,oauth_consumer_key&amp;#61;&amp;#34;&amp;#60;removed&amp;#62;&amp;#34;,oauth_nonce&amp;#61;&amp;#34;659810&amp;#34;,oauth_signature_method&amp;#61;&amp;#34;HMAC-SHA1&amp;#34;,oauth_timestamp&amp;#61;&amp;#34;1368457219&amp;#34;,oauth_token&amp;#61;&amp;#34;2JTvw9nh7uagYfEk1VKrEqLS6hkjVoE2ifPygCdjQ&amp;#34;,oauth_version&amp;#61;&amp;#34;1.0&amp;#34;,oauth_signature&amp;#61;&amp;#34;NNrxwVToX2MM0o5mQ194NRx1vWg&amp;#37;3D&amp;#34;&lt;br /&gt;Accept-Encoding&amp;#58; deflate,gzip&lt;br /&gt;Host&amp;#58; api.twitter.com&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;and here&amp;#39;s the response&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&amp;#60;&amp;#63;xml version&amp;#61;&amp;#34;1.0&amp;#34; encoding&amp;#61;&amp;#34;UTF-8&amp;#34;&amp;#63;&amp;#62;&lt;br /&gt;&amp;#60;hash&amp;#62;&lt;br /&gt;  &amp;#60;error&amp;#62;Required oauth_verifier parameter not provided&amp;#60;&amp;#47;error&amp;#62;&lt;br /&gt;  &amp;#60;request&amp;#62;&amp;#47;oauth&amp;#47;access_token&amp;#60;&amp;#47;request&amp;#62;&lt;br /&gt;&amp;#60;&amp;#47;hash&amp;#62;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;If I rejigger my code to work with a call to pinAuthorizer.Authorize&amp;#40;&amp;#41; and using an external browser everything works correctly.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description><author>jmpinchot</author><pubDate>Mon, 13 May 2013 15:05:12 GMT</pubDate><guid isPermaLink="false">Created Unassigned: OAuth_Verifier header not sent during asynchronous verification [32552] 20130513030512P</guid></item><item><title>Closed Unassigned: ArgumentNullException when call TweetWithMedia with empty string as status on Windows Phone [32551]</title><link>http://linqtotwitter.codeplex.com/workitem/32551</link><description>As the title&lt;br /&gt;</description><author>JoeMayo</author><pubDate>Wed, 01 May 2013 18:08:38 GMT</pubDate><guid isPermaLink="false">Closed Unassigned: ArgumentNullException when call TweetWithMedia with empty string as status on Windows Phone [32551] 20130501060838P</guid></item><item><title>Commented Unassigned: ArgumentNullException when call TweetWithMedia with empty string as status on Windows Phone [32551]</title><link>http://linqtotwitter.codeplex.com/workitem/32551</link><description>As the title&lt;br /&gt;Comments: This is by design. The Twitter API&amp;#39;s &amp;#91;documentation for update_with_media&amp;#93;&amp;#40;https&amp;#58;&amp;#47;&amp;#47;dev.twitter.com&amp;#47;docs&amp;#47;api&amp;#47;1.1&amp;#47;post&amp;#47;statuses&amp;#47;update_with_media&amp;#41; states that status is required. Therefore, LINQ to Twitter is telling you this early on. If you view the Message property of the exception, you should read &amp;#34;status is a required parameter&amp;#34;.</description><author>JoeMayo</author><pubDate>Wed, 01 May 2013 18:08:13 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: ArgumentNullException when call TweetWithMedia with empty string as status on Windows Phone [32551] 20130501060813P</guid></item><item><title>Created Unassigned: ArgumentNullException when call TweetWithMedia with empty string as status on Windows Phone [32551]</title><link>http://linqtotwitter.codeplex.com/workitem/32551</link><description>As the title&lt;br /&gt;</description><author>AgileHobo</author><pubDate>Wed, 01 May 2013 17:04:16 GMT</pubDate><guid isPermaLink="false">Created Unassigned: ArgumentNullException when call TweetWithMedia with empty string as status on Windows Phone [32551] 20130501050416P</guid></item><item><title>Closed Unassigned: Windows 8 oAuth Demo fails with 401 Unauthorized [32550]</title><link>http://linqtotwitter.codeplex.com/workitem/32550</link><description>I&amp;#39;ve set the ConsumerKey and ConsumerSecret with those provisioned to me by Twitter.&lt;br /&gt;&lt;br /&gt;I get &amp;#34;The remote server returned an error&amp;#58; &amp;#40;401&amp;#41; Unauthorized.&amp;#34; on the await line below in Win8OAuthDemo&amp;#92;TweetPage.xaml.cs&lt;br /&gt;&lt;br /&gt; if &amp;#40;auth &amp;#61;&amp;#61; null &amp;#124;&amp;#124; &amp;#33;auth.IsAuthorized&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;     await auth.AuthorizeAsync&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Comments: User resolved by adding their callback to their application page, which is required by Twitter.</description><author>JoeMayo</author><pubDate>Sun, 28 Apr 2013 22:43:27 GMT</pubDate><guid isPermaLink="false">Closed Unassigned: Windows 8 oAuth Demo fails with 401 Unauthorized [32550] 20130428104327P</guid></item><item><title>Commented Unassigned: Windows 8 oAuth Demo fails with 401 Unauthorized [32550]</title><link>http://linqtotwitter.codeplex.com/workitem/32550</link><description>I&amp;#39;ve set the ConsumerKey and ConsumerSecret with those provisioned to me by Twitter.&lt;br /&gt;&lt;br /&gt;I get &amp;#34;The remote server returned an error&amp;#58; &amp;#40;401&amp;#41; Unauthorized.&amp;#34; on the await line below in Win8OAuthDemo&amp;#92;TweetPage.xaml.cs&lt;br /&gt;&lt;br /&gt; if &amp;#40;auth &amp;#61;&amp;#61; null &amp;#124;&amp;#124; &amp;#33;auth.IsAuthorized&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;     await auth.AuthorizeAsync&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Comments: Resolved&amp;#58;&amp;#10;On dev.twitter.com set the callback to http&amp;#58;&amp;#47;&amp;#47;application.local &amp;#40;it was none&amp;#41; and in the source set&amp;#10;Callback &amp;#61; Windows.Security.Authentication.Web.WebAuthenticationBroker.GetCurrentApplicationCallbackUri&amp;#40;&amp;#41;,&amp;#10;</description><author>adamtuliper</author><pubDate>Fri, 26 Apr 2013 07:45:28 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: Windows 8 oAuth Demo fails with 401 Unauthorized [32550] 20130426074528A</guid></item><item><title>Commented Unassigned: Windows 8 oAuth Demo fails with 401 Unauthorized [32550]</title><link>http://linqtotwitter.codeplex.com/workitem/32550</link><description>I&amp;#39;ve set the ConsumerKey and ConsumerSecret with those provisioned to me by Twitter.&lt;br /&gt;&lt;br /&gt;I get &amp;#34;The remote server returned an error&amp;#58; &amp;#40;401&amp;#41; Unauthorized.&amp;#34; on the await line below in Win8OAuthDemo&amp;#92;TweetPage.xaml.cs&lt;br /&gt;&lt;br /&gt; if &amp;#40;auth &amp;#61;&amp;#61; null &amp;#124;&amp;#124; &amp;#33;auth.IsAuthorized&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;     await auth.AuthorizeAsync&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Comments:  Its late and I should read the Twitter Error message better returned in Fiddler. The issue would be to change the demo source code from &amp;#10;&amp;#10;Callback &amp;#61; new Uri&amp;#40;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;linqtotwitter.codeplex.com&amp;#47;&amp;#34;&amp;#41;, &amp;#10;to&amp;#10;Callback &amp;#61; new Uri&amp;#40;&amp;#34;oob&amp;#34;&amp;#41;, &amp;#10;&amp;#10;however &amp;#34;oob&amp;#34; is not a valid Uri and thus an exception is thrown when you try that.&amp;#10;Does this require a code change to Linq To Twitter&amp;#63;&amp;#10;&amp;#10;</description><author>adamtuliper</author><pubDate>Thu, 25 Apr 2013 07:47:39 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: Windows 8 oAuth Demo fails with 401 Unauthorized [32550] 20130425074739A</guid></item><item><title>Commented Unassigned: Windows 8 oAuth Demo fails with 401 Unauthorized [32550]</title><link>http://linqtotwitter.codeplex.com/workitem/32550</link><description>I&amp;#39;ve set the ConsumerKey and ConsumerSecret with those provisioned to me by Twitter.&lt;br /&gt;&lt;br /&gt;I get &amp;#34;The remote server returned an error&amp;#58; &amp;#40;401&amp;#41; Unauthorized.&amp;#34; on the await line below in Win8OAuthDemo&amp;#92;TweetPage.xaml.cs&lt;br /&gt;&lt;br /&gt; if &amp;#40;auth &amp;#61;&amp;#61; null &amp;#124;&amp;#124; &amp;#33;auth.IsAuthorized&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;     await auth.AuthorizeAsync&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Comments: Additional info - the response from Twitter is&amp;#58;&amp;#10;&amp;#10; &amp;#60;error&amp;#62;Desktop applications only support the oauth_callback value &amp;#39;oob&amp;#39;&amp;#60;&amp;#47;error&amp;#62;&amp;#10;&amp;#10;I&amp;#39;ve tried the default&amp;#10;Callback &amp;#61; new Uri&amp;#40;&amp;#34;http&amp;#58;&amp;#47;&amp;#47;linqtotwitter.codeplex.com&amp;#47;&amp;#34;&amp;#41;&amp;#10;as well as using the following which works in WinJS when doing oAuth &amp;#39;manually&amp;#39;&amp;#10;Windows.Security.Authentication.Web.WebAuthenticationBroker.GetCurrentApplicationCallbackUri&amp;#40;&amp;#41;&amp;#59;</description><author>adamtuliper</author><pubDate>Thu, 25 Apr 2013 07:41:18 GMT</pubDate><guid isPermaLink="false">Commented Unassigned: Windows 8 oAuth Demo fails with 401 Unauthorized [32550] 20130425074118A</guid></item><item><title>Created Unassigned: Windows 8 oAuth Demo fails with 401 Unauthorized [32550]</title><link>http://linqtotwitter.codeplex.com/workitem/32550</link><description>I&amp;#39;ve set the ConsumerKey and ConsumerSecret with those provisioned to me by Twitter.&lt;br /&gt;&lt;br /&gt;I get &amp;#34;The remote server returned an error&amp;#58; &amp;#40;401&amp;#41; Unauthorized.&amp;#34; on the await line below in Win8OAuthDemo&amp;#92;TweetPage.xaml.cs&lt;br /&gt;&lt;br /&gt; if &amp;#40;auth &amp;#61;&amp;#61; null &amp;#124;&amp;#124; &amp;#33;auth.IsAuthorized&amp;#41;&lt;br /&gt;&amp;#123;&lt;br /&gt;     await auth.AuthorizeAsync&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#125;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;</description><author>adamtuliper</author><pubDate>Thu, 25 Apr 2013 07:36:31 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Windows 8 oAuth Demo fails with 401 Unauthorized [32550] 20130425073631A</guid></item><item><title>Closed Issue: Support for StallWarnings? [32547]</title><link>http://linqtotwitter.codeplex.com/workitem/32547</link><description>I see that a parameter called StallWarnings is listed in streaming documentation as a parameter to the listen query, which is intended to warn the client they are falling behind and may be disconnected.&lt;br /&gt;&lt;br /&gt;But, this parameter doesn&amp;#39;t seem to be available &amp;#40;as of version 2.1.04&amp;#41;. Is this unintentionally omitted or am I missing something&amp;#63;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Comments: Added StallWarnings and other parameters to all streams.</description><author>JoeMayo</author><pubDate>Mon, 22 Apr 2013 03:17:59 GMT</pubDate><guid isPermaLink="false">Closed Issue: Support for StallWarnings? [32547] 20130422031759A</guid></item><item><title>Created Unassigned: Error posting tweets with larger photos (below 3MB) [32549]</title><link>http://linqtotwitter.codeplex.com/workitem/32549</link><description>A web application similar to Hootsuites posting functionality.&lt;br /&gt;Not a mobile application.&lt;br /&gt;</description><author>JoeMayo</author><pubDate>Thu, 11 Apr 2013 17:56:04 GMT</pubDate><guid isPermaLink="false">Created Unassigned: Error posting tweets with larger photos (below 3MB) [32549] 20130411055604P</guid></item></channel></rss>