[twitter-dev] Re: statuses/filter track and retweets

2010-09-01 Thread Kostya Nikolayev
I found the reason why the retweet from my prev post is missing from
streaming track results.

After retweeting the length of the status is greater then 140 chars.
I track by #custserv which is in the end of the status.

Looks like streaming tracks the body of the retweet, but not the
original status text.
Shall it be considered as a bug?

Traditional search returns both original status and retweet in the
above case.

Thanks,
Kostya


On Sep 1, 10:02 am, Kostya Nikolayev  wrote:
> Hi,
>
> I'm using "statuses/filter?track=something" streaming api.
>
> Noticed that it doesn't return native twitter retweets which contain
> "something" in the original tweet text.
>
> Specifically:
>
> "statuses/filter?track=#custserv"
>
> misses the following retweet from MarshaCollier:
>
> "RT @JeffreyJKingman: Crowdsourcing CustServ has issues of message
> management and company control. What issues from keeping CustServ in-
> company? #custserv"
>
> I expected to get both original tweet and the retweet, but got only
> the original one.
>
> Is it supposed to work in this way?
>
> Thanks,
> Kostya

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk?hl=en


[twitter-dev] statuses/filter track and retweets

2010-09-01 Thread Kostya Nikolayev
Hi,

I'm using "statuses/filter?track=something" streaming api.

Noticed that it doesn't return native twitter retweets which contain
"something" in the original tweet text.

Specifically:

"statuses/filter?track=#custserv"

misses the following retweet from MarshaCollier:

"RT @JeffreyJKingman: Crowdsourcing CustServ has issues of message
management and company control. What issues from keeping CustServ in-
company? #custserv"

I expected to get both original tweet and the retweet, but got only
the original one.

Is it supposed to work in this way?

Thanks,
Kostya

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk?hl=en


[twitter-dev] Re: Issues with OAuth

2010-07-21 Thread Kostya Nikolayev
Hi Taylor,

Great! Worked like a charm with commas doubly encoded.

Thanks,
Kostya


On Jul 21, 7:34 pm, Taylor Singletary 
wrote:
> Hi Kostya,
>
> You're close on getting the comma-separation to work. You've correctly
> URL encoded it for your POST body, but for the OAuth signature base
> string, it'll need to be doubly encoded.
>
> Your base string should be something like:
> POST&http%3A%2F%2Fstream.twitter.com%2F1%2Fstatuses
> %2Ffilter.json&oauth_consumer_key%3DtnruTl8uNRwGvICnzYpww%26oauth_nonce
> %3DmTzWO7xxDbK11EvFJ1d90jXI2MMM8jN1b3Eh4KTZk%26oauth_signature_method
> %3DHMAC-SHA1%26oauth_timestamp%3D1279727860%26oauth_token%3D150423549-
> eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn%26oauth_version%3D1.0%26track
> %3Dsun%252Cmicrosoft
>
> %2C becomes %252C..
>
> Taylor
>
> On Wed, Jul 21, 2010 at 9:09 AM, Kostya Nikolayev  
> wrote:
> > Matt,
>
> > Another question I believe you may clarify.
>
> > Streaming API over OAuth works fine if track only one item:
> > "track=sun"
> > When I want to track multiple items like "track=sun,microsoft" I'm
> > getting 401
>
> > There is what I'm sending:
>
> > POST /1/statuses/filter.json HTTP/1.1\r\nHost: stream.twitter.com\r
> > \nUser-Agent: TweetStream\r\nAuthorization: OAuth
> > oauth_nonce="mTzWO7xxDbK11EvFJ1d90jXI2MMM8jN1b3Eh4KTZk",
> > oauth_signature_method="HMAC-SHA1", oauth_timestamp="1279727860",
> > oauth_signature="SpY5JkbnWBWkI5qCzOWUMHUTNgM%3D",
> > oauth_consumer_key="tnruTl8uNRwGvICnzYpww", oauth_token="150423549-
> > eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn", oauth_version="1.0"\r
> > \nContent-type: application/x-www-form-urlencoded\r\nContent-length:
> > 21\r\n\r\ntrack=sun%2Cmicrosoft
>
> > Signature base string is:
>
> > POST&http%3A%2F%2Fstream.twitter.com%2F1%2Fstatuses
> > %2Ffilter.json&oauth_consumer_key%3DtnruTl8uNRwGvICnzYpww%26oauth_nonce
> > %3DmTzWO7xxDbK11EvFJ1d90jXI2MMM8jN1b3Eh4KTZk%26oauth_signature_method
> > %3DHMAC-SHA1%26oauth_timestamp%3D1279727860%26oauth_token%3D150423549-
> > eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn%26oauth_version%3D1.0%26track
> > %3Dsun%2Cmicrosoft
>
> > Thanks,
> > Kostya
>
> > On Jul 21, 5:17 pm, Kostya Nikolayev  wrote:
> >> Hi Matt,
>
> >> Very appreciate your response!
>
> >> It is working now after I quoted the oauth values.
> >> So, the quoting matters.
>
> >> Also, Consumer token was in place of OAuth one, and vice versa.
>
> >> Thanks a lot,
> >> Kostya
>
> >> On Jul 21, 1:13 am, Matt Harris  wrote:
>
> >> > Hey Kostya,
>
> >> > I've taken a quick look at your POST headers and noticed a couple of 
> >> > things:
>
> >> > 1) Whilst it shouldn't matter the streaming API can be very particular 
> >> > about
> >> > the headers you send so I recommend you quote your OAuth values,
> >> > e.g. oauth_nonce="Rb34D3rVEetj"
>
> >> > 2) Your OAuth token looks like a consumer token rather than a user one. 
> >> > Are
> >> > you authenticating against the streaming API using your user token and
> >> > secret?
>
> >> > Hope that helps,
>
> >> > Matt
>
> >> > On Tue, Jul 20, 2010 at 3:04 PM, Taylor Singletary <
>
> >> > taylorsinglet...@twitter.com> wrote:
> >> > > Hi Kostya,
>
> >> > > I'm unable to reproduce your issue, unfortunately. Are you still 
> >> > > getting a
> >> > > 500 error when trying to connect to streaming via OAuth? Have you tried
> >> > > using a different access token or even API key? Does the same 
> >> > > code/keys work
> >> > > against the REST API?
>
> >> > > Taylor
>
> >> > > On Tue, Jul 20, 2010 at 2:58 PM, Kostya Nikolayev 
> >> > > wrote:
>
> >> > >> Taylor,
>
> >> > >> Did the details I posted help to identify the issue?
>
> >> > >> Thanks,
> >> > >> Kostya
>
> >> > >> On Jul 20, 9:56 pm, ap  wrote:
> >> > >> > Looks like the oAuth access token issue is back! Started getting 
> >> > >> > 500's
> >> > >> > from Twitter API a few minutes ago.
>
> >> > >> > On Jul 20, 11:38 am, Kostya Nikolayev  wrote:
>
> >> > >> > > Taylor!

[twitter-dev] Re: Issues with OAuth

2010-07-21 Thread Kostya Nikolayev
Matt,

Another question I believe you may clarify.

Streaming API over OAuth works fine if track only one item:
"track=sun"
When I want to track multiple items like "track=sun,microsoft" I'm
getting 401

There is what I'm sending:

POST /1/statuses/filter.json HTTP/1.1\r\nHost: stream.twitter.com\r
\nUser-Agent: TweetStream\r\nAuthorization: OAuth
oauth_nonce="mTzWO7xxDbK11EvFJ1d90jXI2MMM8jN1b3Eh4KTZk",
oauth_signature_method="HMAC-SHA1", oauth_timestamp="1279727860",
oauth_signature="SpY5JkbnWBWkI5qCzOWUMHUTNgM%3D",
oauth_consumer_key="tnruTl8uNRwGvICnzYpww", oauth_token="150423549-
eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn", oauth_version="1.0"\r
\nContent-type: application/x-www-form-urlencoded\r\nContent-length:
21\r\n\r\ntrack=sun%2Cmicrosoft

Signature base string is:

POST&http%3A%2F%2Fstream.twitter.com%2F1%2Fstatuses
%2Ffilter.json&oauth_consumer_key%3DtnruTl8uNRwGvICnzYpww%26oauth_nonce
%3DmTzWO7xxDbK11EvFJ1d90jXI2MMM8jN1b3Eh4KTZk%26oauth_signature_method
%3DHMAC-SHA1%26oauth_timestamp%3D1279727860%26oauth_token%3D150423549-
eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn%26oauth_version%3D1.0%26track
%3Dsun%2Cmicrosoft

Thanks,
Kostya

On Jul 21, 5:17 pm, Kostya Nikolayev  wrote:
> Hi Matt,
>
> Very appreciate your response!
>
> It is working now after I quoted the oauth values.
> So, the quoting matters.
>
> Also, Consumer token was in place of OAuth one, and vice versa.
>
> Thanks a lot,
> Kostya
>
> On Jul 21, 1:13 am, Matt Harris  wrote:
>
> > Hey Kostya,
>
> > I've taken a quick look at your POST headers and noticed a couple of things:
>
> > 1) Whilst it shouldn't matter the streaming API can be very particular about
> > the headers you send so I recommend you quote your OAuth values,
> > e.g. oauth_nonce="Rb34D3rVEetj"
>
> > 2) Your OAuth token looks like a consumer token rather than a user one. Are
> > you authenticating against the streaming API using your user token and
> > secret?
>
> > Hope that helps,
>
> > Matt
>
> > On Tue, Jul 20, 2010 at 3:04 PM, Taylor Singletary <
>
> > taylorsinglet...@twitter.com> wrote:
> > > Hi Kostya,
>
> > > I'm unable to reproduce your issue, unfortunately. Are you still getting a
> > > 500 error when trying to connect to streaming via OAuth? Have you tried
> > > using a different access token or even API key? Does the same code/keys 
> > > work
> > > against the REST API?
>
> > > Taylor
>
> > > On Tue, Jul 20, 2010 at 2:58 PM, Kostya Nikolayev 
> > > wrote:
>
> > >> Taylor,
>
> > >> Did the details I posted help to identify the issue?
>
> > >> Thanks,
> > >> Kostya
>
> > >> On Jul 20, 9:56 pm, ap  wrote:
> > >> > Looks like the oAuth access token issue is back! Started getting 500's
> > >> > from Twitter API a few minutes ago.
>
> > >> > On Jul 20, 11:38 am, Kostya Nikolayev  wrote:
>
> > >> > > Taylor!
>
> > >> > > This is what I'm sending:
>
> > >> > > POST /1/statuses/filter.json HTTP/1.1\r\nHost: stream.twitter.com\r
> > >> > > \nUser-Agent: TweetStream\r\nAuthorization: OAuth
> > >> > > oauth_nonce=0IblKRcN17LUBG6zMnQk6DVrObhzcZowIVpPLtsRviU,
> > >> > > oauth_signature=rbGAlSp1VIbuXbk4Wr99jumyi5o%3D,
> > >> > > oauth_signature_method=HMAC-SHA1, oauth_timestamp=1279640138,
> > >> > > oauth_consumer_key=150423549-eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn,
> > >> > > oauth_token=tnruTl8uNRwGvICnzYpww, oauth_version=1.0\r\nContent-type:
> > >> > > application/x-www-form-urlencoded\r\nContent-length: 13\r\n\r
> > >> > > \ntrack=twitter
>
> > >> > > Signature base string is:
>
> > >> > > POST&http%3A%2F%2Fstream.twitter.com%2F1%2Fstatuses
> > >> > > %2Ffilter.json&oauth_consumer_key%3D150423549-
> > >> > > eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn%26oauth_nonce
>
> > >> %3D0IblKRcN17LUBG6zMnQk6DVrObhzcZowIVpPLtsRviU%26oauth_signature_method
> > >> > > %3DHMAC-SHA1%26oauth_timestamp%3D1279640138%26oauth_token
> > >> > > %3DtnruTl8uNRwGvICnzYpww%26oauth_version%3D1.0%26track%3D
>
> > >> > > Thanks,
> > >> > > Kostya
>
> > >> > > On Jul 20, 6:18 pm, Taylor Singletary 
> > >> > > wrote:
>
> > >> > > > Hi Kostya,
>
> > >> > &g

[twitter-dev] Re: Issues with OAuth

2010-07-21 Thread Kostya Nikolayev
Hi Matt,

Very appreciate your response!

It is working now after I quoted the oauth values.
So, the quoting matters.

Also, Consumer token was in place of OAuth one, and vice versa.

Thanks a lot,
Kostya

On Jul 21, 1:13 am, Matt Harris  wrote:
> Hey Kostya,
>
> I've taken a quick look at your POST headers and noticed a couple of things:
>
> 1) Whilst it shouldn't matter the streaming API can be very particular about
> the headers you send so I recommend you quote your OAuth values,
> e.g. oauth_nonce="Rb34D3rVEetj"
>
> 2) Your OAuth token looks like a consumer token rather than a user one. Are
> you authenticating against the streaming API using your user token and
> secret?
>
> Hope that helps,
>
> Matt
>
> On Tue, Jul 20, 2010 at 3:04 PM, Taylor Singletary <
>
>
>
> taylorsinglet...@twitter.com> wrote:
> > Hi Kostya,
>
> > I'm unable to reproduce your issue, unfortunately. Are you still getting a
> > 500 error when trying to connect to streaming via OAuth? Have you tried
> > using a different access token or even API key? Does the same code/keys work
> > against the REST API?
>
> > Taylor
>
> > On Tue, Jul 20, 2010 at 2:58 PM, Kostya Nikolayev 
> > wrote:
>
> >> Taylor,
>
> >> Did the details I posted help to identify the issue?
>
> >> Thanks,
> >> Kostya
>
> >> On Jul 20, 9:56 pm, ap  wrote:
> >> > Looks like the oAuth access token issue is back! Started getting 500's
> >> > from Twitter API a few minutes ago.
>
> >> > On Jul 20, 11:38 am, Kostya Nikolayev  wrote:
>
> >> > > Taylor!
>
> >> > > This is what I'm sending:
>
> >> > > POST /1/statuses/filter.json HTTP/1.1\r\nHost: stream.twitter.com\r
> >> > > \nUser-Agent: TweetStream\r\nAuthorization: OAuth
> >> > > oauth_nonce=0IblKRcN17LUBG6zMnQk6DVrObhzcZowIVpPLtsRviU,
> >> > > oauth_signature=rbGAlSp1VIbuXbk4Wr99jumyi5o%3D,
> >> > > oauth_signature_method=HMAC-SHA1, oauth_timestamp=1279640138,
> >> > > oauth_consumer_key=150423549-eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn,
> >> > > oauth_token=tnruTl8uNRwGvICnzYpww, oauth_version=1.0\r\nContent-type:
> >> > > application/x-www-form-urlencoded\r\nContent-length: 13\r\n\r
> >> > > \ntrack=twitter
>
> >> > > Signature base string is:
>
> >> > > POST&http%3A%2F%2Fstream.twitter.com%2F1%2Fstatuses
> >> > > %2Ffilter.json&oauth_consumer_key%3D150423549-
> >> > > eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn%26oauth_nonce
>
> >> %3D0IblKRcN17LUBG6zMnQk6DVrObhzcZowIVpPLtsRviU%26oauth_signature_method
> >> > > %3DHMAC-SHA1%26oauth_timestamp%3D1279640138%26oauth_token
> >> > > %3DtnruTl8uNRwGvICnzYpww%26oauth_version%3D1.0%26track%3D
>
> >> > > Thanks,
> >> > > Kostya
>
> >> > > On Jul 20, 6:18 pm, Taylor Singletary 
> >> > > wrote:
>
> >> > > > Hi Kostya,
>
> >> > > > I'm able to connect to the streaming API over OAuth fine at the
> >> moment.
>
> >> > > > Can you share the full URL, HTTP method, and parameters that you are
> >> trying
> >> > > > to access? If possible, also your signature base string?
>
> >> > > > Taylor
>
> >> > > > On Tue, Jul 20, 2010 at 8:09 AM, Kostya Nikolayev <
> >> kostya1...@gmail.com>wrote:
>
> >> > > > > Taylor,
>
> >> > > > > Has Sreaming API OAuth been affected ?
>
> >> > > > > Authenticating with the following oauth header gives 500 to me:
> >> > > > > "OAuth oauth_nonce=N9wgHt2uPw8HqRwtOpjuVDSeuVYmc8UGDF8H0237v0,
> >> > > > > oauth_signature=ALUT7tKXK%2Fw57SnJulj8x1l%2F7%2Fk%3D,
> >> > > > > oauth_signature_method=HMAC-SHA1, oauth_timestamp=1279638245,
>
> >> oauth_consumer_key=150423549-eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn,
> >> > > > > oauth_token=tnruTl8uNRwGvICnzYpww, oauth_version=1.0"
>
> >> > > > > Is it Streaming API OAuth issue?
>
> >> > > > > Thanks,
> >> > > > > Kostya
>
> >> > > > > On Jul 19, 10:59 pm, Taylor Singletary <
> >> taylorsinglet...@twitter.com>
> >> > > > > wrote:
> >> > > > > > Hi Ap,
>
> >> > > > > > This is the right place for re

[twitter-dev] Re: Issues with OAuth

2010-07-20 Thread Kostya Nikolayev
Taylor,

Did the details I posted help to identify the issue?

Thanks,
Kostya

On Jul 20, 9:56 pm, ap  wrote:
> Looks like the oAuth access token issue is back! Started getting 500's
> from Twitter API a few minutes ago.
>
> On Jul 20, 11:38 am, Kostya Nikolayev  wrote:
>
> > Taylor!
>
> > This is what I'm sending:
>
> > POST /1/statuses/filter.json HTTP/1.1\r\nHost: stream.twitter.com\r
> > \nUser-Agent: TweetStream\r\nAuthorization: OAuth
> > oauth_nonce=0IblKRcN17LUBG6zMnQk6DVrObhzcZowIVpPLtsRviU,
> > oauth_signature=rbGAlSp1VIbuXbk4Wr99jumyi5o%3D,
> > oauth_signature_method=HMAC-SHA1, oauth_timestamp=1279640138,
> > oauth_consumer_key=150423549-eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn,
> > oauth_token=tnruTl8uNRwGvICnzYpww, oauth_version=1.0\r\nContent-type:
> > application/x-www-form-urlencoded\r\nContent-length: 13\r\n\r
> > \ntrack=twitter
>
> > Signature base string is:
>
> > POST&http%3A%2F%2Fstream.twitter.com%2F1%2Fstatuses
> > %2Ffilter.json&oauth_consumer_key%3D150423549-
> > eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn%26oauth_nonce
> > %3D0IblKRcN17LUBG6zMnQk6DVrObhzcZowIVpPLtsRviU%26oauth_signature_method
> > %3DHMAC-SHA1%26oauth_timestamp%3D1279640138%26oauth_token
> > %3DtnruTl8uNRwGvICnzYpww%26oauth_version%3D1.0%26track%3D
>
> > Thanks,
> > Kostya
>
> > On Jul 20, 6:18 pm, Taylor Singletary 
> > wrote:
>
> > > Hi Kostya,
>
> > > I'm able to connect to the streaming API over OAuth fine at the moment.
>
> > > Can you share the full URL, HTTP method, and parameters that you are 
> > > trying
> > > to access? If possible, also your signature base string?
>
> > > Taylor
>
> > > On Tue, Jul 20, 2010 at 8:09 AM, Kostya Nikolayev 
> > > wrote:
>
> > > > Taylor,
>
> > > > Has Sreaming API OAuth been affected ?
>
> > > > Authenticating with the following oauth header gives 500 to me:
> > > > "OAuth oauth_nonce=N9wgHt2uPw8HqRwtOpjuVDSeuVYmc8UGDF8H0237v0,
> > > > oauth_signature=ALUT7tKXK%2Fw57SnJulj8x1l%2F7%2Fk%3D,
> > > > oauth_signature_method=HMAC-SHA1, oauth_timestamp=1279638245,
> > > > oauth_consumer_key=150423549-eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn,
> > > > oauth_token=tnruTl8uNRwGvICnzYpww, oauth_version=1.0"
>
> > > > Is it Streaming API OAuth issue?
>
> > > > Thanks,
> > > > Kostya
>
> > > > On Jul 19, 10:59 pm, Taylor Singletary 
> > > > wrote:
> > > > > Hi Ap,
>
> > > > > This is the right place for reporting issues like this -- well, one of
> > > > the
> > > > > right places anyway -- we have some issues with OAuth today that are
> > > > related
> > > > > to some wider issues related to updating objects associated with users
> > > > (like
> > > > > access tokens).
>
> > > > > We hope to have this fixed soon!
>
> > > > > Thanks,
> > > > > Taylor
>
> > > > > On Mon, Jul 19, 2010 at 12:53 PM, ap  wrote:
> > > > > > I've been experiencing OAuth issues with my app today. If I'm 
> > > > > > already
> > > > > > logged into twitter, the OAuth redirects to my app just fine. 
> > > > > > However,
> > > > > > if I have to land on the authentication page and enter my username 
> > > > > > and
> > > > > > password and click submit, I get the following error:
>
> > > > > > Mon Jul 19 15:40:47 EDT 2010 : Twitter exception:
> > > > > > TwitterException{message=500:Something is broken.  Please post to 
> > > > > > the
> > > > > > group so the Twitter team can investigate.[Some HTML here],
> > > > > > statusCode=500, retryAfter=0, rateLimitStatus=null}
>
> > > > > > I'm not sure if this is the group that the message is asking me to
> > > > > > post in, if not, please let me know the correct group to post to so 
> > > > > > I
> > > > > > can get some assistance.
>
> > > > > > Thanks!
>
>


[twitter-dev] Re: Issues with OAuth

2010-07-20 Thread Kostya Nikolayev
Taylor!

This is what I'm sending:

POST /1/statuses/filter.json HTTP/1.1\r\nHost: stream.twitter.com\r
\nUser-Agent: TweetStream\r\nAuthorization: OAuth
oauth_nonce=0IblKRcN17LUBG6zMnQk6DVrObhzcZowIVpPLtsRviU,
oauth_signature=rbGAlSp1VIbuXbk4Wr99jumyi5o%3D,
oauth_signature_method=HMAC-SHA1, oauth_timestamp=1279640138,
oauth_consumer_key=150423549-eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn,
oauth_token=tnruTl8uNRwGvICnzYpww, oauth_version=1.0\r\nContent-type:
application/x-www-form-urlencoded\r\nContent-length: 13\r\n\r
\ntrack=twitter

Signature base string is:

POST&http%3A%2F%2Fstream.twitter.com%2F1%2Fstatuses
%2Ffilter.json&oauth_consumer_key%3D150423549-
eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn%26oauth_nonce
%3D0IblKRcN17LUBG6zMnQk6DVrObhzcZowIVpPLtsRviU%26oauth_signature_method
%3DHMAC-SHA1%26oauth_timestamp%3D1279640138%26oauth_token
%3DtnruTl8uNRwGvICnzYpww%26oauth_version%3D1.0%26track%3D

Thanks,
Kostya

On Jul 20, 6:18 pm, Taylor Singletary 
wrote:
> Hi Kostya,
>
> I'm able to connect to the streaming API over OAuth fine at the moment.
>
> Can you share the full URL, HTTP method, and parameters that you are trying
> to access? If possible, also your signature base string?
>
> Taylor
>
> On Tue, Jul 20, 2010 at 8:09 AM, Kostya Nikolayev wrote:
>
> > Taylor,
>
> > Has Sreaming API OAuth been affected ?
>
> > Authenticating with the following oauth header gives 500 to me:
> > "OAuth oauth_nonce=N9wgHt2uPw8HqRwtOpjuVDSeuVYmc8UGDF8H0237v0,
> > oauth_signature=ALUT7tKXK%2Fw57SnJulj8x1l%2F7%2Fk%3D,
> > oauth_signature_method=HMAC-SHA1, oauth_timestamp=1279638245,
> > oauth_consumer_key=150423549-eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn,
> > oauth_token=tnruTl8uNRwGvICnzYpww, oauth_version=1.0"
>
> > Is it Streaming API OAuth issue?
>
> > Thanks,
> > Kostya
>
> > On Jul 19, 10:59 pm, Taylor Singletary 
> > wrote:
> > > Hi Ap,
>
> > > This is the right place for reporting issues like this -- well, one of
> > the
> > > right places anyway -- we have some issues with OAuth today that are
> > related
> > > to some wider issues related to updating objects associated with users
> > (like
> > > access tokens).
>
> > > We hope to have this fixed soon!
>
> > > Thanks,
> > > Taylor
>
> > > On Mon, Jul 19, 2010 at 12:53 PM, ap  wrote:
> > > > I've been experiencing OAuth issues with my app today. If I'm already
> > > > logged into twitter, the OAuth redirects to my app just fine. However,
> > > > if I have to land on the authentication page and enter my username and
> > > > password and click submit, I get the following error:
>
> > > > Mon Jul 19 15:40:47 EDT 2010 : Twitter exception:
> > > > TwitterException{message=500:Something is broken.  Please post to the
> > > > group so the Twitter team can investigate.[Some HTML here],
> > > > statusCode=500, retryAfter=0, rateLimitStatus=null}
>
> > > > I'm not sure if this is the group that the message is asking me to
> > > > post in, if not, please let me know the correct group to post to so I
> > > > can get some assistance.
>
> > > > Thanks!
>
>


[twitter-dev] Re: Issues with OAuth

2010-07-20 Thread Kostya Nikolayev
Taylor,

Has Sreaming API OAuth been affected ?

Authenticating with the following oauth header gives 500 to me:
"OAuth oauth_nonce=N9wgHt2uPw8HqRwtOpjuVDSeuVYmc8UGDF8H0237v0,
oauth_signature=ALUT7tKXK%2Fw57SnJulj8x1l%2F7%2Fk%3D,
oauth_signature_method=HMAC-SHA1, oauth_timestamp=1279638245,
oauth_consumer_key=150423549-eAqqrDB7nsbvxE85cHValKZazJ6z4137CEJ6Bnfn,
oauth_token=tnruTl8uNRwGvICnzYpww, oauth_version=1.0"

Is it Streaming API OAuth issue?

Thanks,
Kostya

On Jul 19, 10:59 pm, Taylor Singletary 
wrote:
> Hi Ap,
>
> This is the right place for reporting issues like this -- well, one of the
> right places anyway -- we have some issues with OAuth today that are related
> to some wider issues related to updating objects associated with users (like
> access tokens).
>
> We hope to have this fixed soon!
>
> Thanks,
> Taylor
>
> On Mon, Jul 19, 2010 at 12:53 PM, ap  wrote:
> > I've been experiencing OAuth issues with my app today. If I'm already
> > logged into twitter, the OAuth redirects to my app just fine. However,
> > if I have to land on the authentication page and enter my username and
> > password and click submit, I get the following error:
>
> > Mon Jul 19 15:40:47 EDT 2010 : Twitter exception:
> > TwitterException{message=500:Something is broken.  Please post to the
> > group so the Twitter team can investigate.[Some HTML here],
> > statusCode=500, retryAfter=0, rateLimitStatus=null}
>
> > I'm not sure if this is the group that the message is asking me to
> > post in, if not, please let me know the correct group to post to so I
> > can get some assistance.
>
> > Thanks!
>
>


[twitter-dev] OAuth and Streaming API

2010-07-20 Thread Kostya Nikolayev
Is OAuth functioning for the Streeming API at the moment?

I'm trying to make it work for the first time now and getting "HTTP/
1.1 500 Internal Server Error".

Had it been working before yesterdays (2010-Jul-19) crisis?

Had the crisis affected Streaming API?

Has it been fixed for Streaming API?

Thanks!