Re: [twitter-dev] Re: /statuses/filter.json returns 401 with OAuth

2011-02-23 Thread Josiah Carlson
themattharris, Thank you for the response. I can only (easily) test quoting of the body after signing, and that results in OAuth authorization failure. Which client library do you use? I'd like to trace though a known-working library to figure out where the one I am using is failing. Thank yo

[twitter-dev] Streaming API access level limit

2011-02-23 Thread aquajach
Hi, Just started to play with streaming API, but get confused on how many followers id could be tracked with one connection. In basic level of filter, http://dev.twitter.com/doc/post/statuses/filter says 400 followers ids http://dev.twitter.com/pages/streaming_api_methods says 5,000 followers ids

[twitter-dev] Re: Twitter feed for corporate website/portal

2011-02-23 Thread Richard
Peter Denton, I have a corporate website and I would like to show Twitter feeds of my selected keywords (Theme Based). For that I would like to use API which get me the feeds directly..without creating any Twitter account, just like anonymous user..my question is, will Twitter consider it as SPAM.

[twitter-dev] get user email address

2011-02-23 Thread amrish.prajapati
hello, I would like to get all details including email address of user. When I make http request by parameter screen_name http://api.twitter.com/1/users/show.xml?screen_name= I am not able to get email address of that user. How can I able to get it ? Please help for same. Thanks in ad

Re: [twitter-dev] get user email address

2011-02-23 Thread Taylor Singletary
Hi Amrish, User email addresses are not returned in the Twitter API. If you would like a user's email address, you'll have to ask them for it in your application. Taylor On Wed, Feb 23, 2011 at 4:09 AM, amrish.prajapati < amrish.prajap...@gmail.com> wrote: > hello, > > I would like to get all d

Re: [twitter-dev] Sharing a link on Twitter via an email

2011-02-23 Thread Taylor Singletary
Hi there, I think you want to pre-shorten your links before you even put them in the email you're sending out. By pre-shortening the links, they'll already be of an appropriate length for sharing on Twitter. When the user clicks the link from within an email, your shortening service will unroll th

Re: [twitter-dev] Sharing a link on Twitter via an email

2011-02-23 Thread Lukas Wittenbraker
The links within the email pull customer specific information from our database. (customer name, ID, etc) for tracking purposes on the back end. This is the reason I can't pre shorten the links. I may be up a creek and not able to solve this issue. I was hoping there was some sort of script that

Re: [twitter-dev] Is this a bug for referencing status urls?

2011-02-23 Thread Taylor Singletary
This isn't a bug so much as a not-yet completely implemented feature. #NewTwitter knows what to do in this situation. #OldTwitter does not. A logged out user is still on #OldTwitter. @episod - Taylor Singletary - Twitter Developer Advocate On Sat, Feb 19, 2011 at 7:06

Re: [twitter-dev] Sharing a link on Twitter via an email

2011-02-23 Thread Pete Clark
In message , Lukas Wittenbraker writes >The links within the email pull customer specific information from our >database. (customer name, ID, etc) for tracking purposes on the back >end. This is the reason I can't pre shorten the links. I may be up a >creek and not able to solve this issue. I w

Re: [twitter-dev] Re: Follower analysis without whitelisting breaks limits?

2011-02-23 Thread Taylor Singletary
Accounts with more followers will naturally take you longer to process. The majority of users on Twitter do not have exceptionally large follower counts (though your user base may reflect different demographics). You can do analysis for users with low follower counts within an hour. For users with

Re: [twitter-dev] Sharing a link on Twitter via an email

2011-02-23 Thread Lukas Wittenbraker
I don't think email clients would work well in PHP. I could be wrong, but I don't believe that would work seeing as my email is written in HTML. On Wed, Feb 23, 2011 at 10:18 AM, Pete Clark wrote: > In message >, Lukas Wittenbraker writes >>The links within the email pull customer specific info

Re: [twitter-dev] Sharing a link on Twitter via an email

2011-02-23 Thread Pete Clark
In message , Lukas Wittenbraker writes >I don't think email clients would work well in PHP. > >I could be wrong, but I don't believe that would work seeing as my >email is written in HTML. Just a suggestion, since most emails from a system are created in PHP, then emailed. You certainly couldn

[twitter-dev] Search across multiple accounts

2011-02-23 Thread Justin
Is it possible to perform a search across multiple accounts? I've had a look though the search api and can't see anything but I could very well have missed something. What I'm thinking is something along the lines of: ?q=searchQuery+from%3Auser1,user2,user3 Also (again I can't see anything in th

Re: [twitter-dev] Re: Twitter feed for corporate website/portal

2011-02-23 Thread Peter Denton
If you want to display a feed of tweets matching a search term, I would use the Twitter javascript widgets. Since the requests are client side, you don't have to worry about rate limiting, and you can style the widget as you please. Fetching tweets, storing them in a database, and serving them is o

Re: [twitter-dev] Search across multiple accounts

2011-02-23 Thread yaemog Dodigo
Hi Justin, you could follow (with the streaming api) users 1,2,and 3. But then you'd have to perform the search yourself. Alternatively, you can track (with the streaming api) your searchQuery and only keep tweets from users 1,2, and 3. Maybe I'm missing something here (e.g., userstreams?) -m O

Re: [twitter-dev] Search across multiple accounts

2011-02-23 Thread Taylor Singletary
Hi Justin, See this thread for an explanation of how to do multi-user search and/or streaming search: http://groups.google.com/group/twitter-development-talk/browse_thread/thread/36b095f97879ff0a?hl=en_US# @episod - Taylor Singletary - Twitter Developer Advocate On W

[twitter-dev] Re: Search across multiple accounts

2011-02-23 Thread Justin
Fantastic, thanks Taylor... I had tried that but with "=" instead of ":". Works a treat now :) Also, thanks for quick response... On Feb 23, 5:50 pm, Taylor Singletary wrote: > Hi Justin, > > See this thread for an explanation of how to do multi-user search and/or > streaming > search:http://g

[twitter-dev] Re: Search across multiple accounts

2011-02-23 Thread Justin
I thought about that but figgured there must be a way to do it more efficiently - Taylor provided a link (above) to to solution... Thanks for the suggestion though :-) On Feb 23, 5:52 pm, yaemog Dodigo wrote: > Hi Justin, > > you could follow (with the streaming api) users 1,2,and 3. But then yo

Re: [twitter-dev] Re: Search across multiple accounts

2011-02-23 Thread Enrico Miglino
Hi, The thread regard my question, and the suggested solution works fine. I'm using now in my application and has no problems. Enrico On 23 February 2011 19:39, Justin wrote: > I thought about that but figgured there must be a way to do it more > efficiently - Taylor provided a link (above) to

Re: [twitter-dev] Re: /statuses/filter.json returns 401 with OAuth

2011-02-23 Thread Josiah Carlson
Looking at 3rd party libraries, I realized how ... nasty their auth flows were, so I walked through the pieces of: http://hueniverse.com/2008/10/beginners-guide-to-oauth-part-iv-signing-requests/ and created my own simple OAuth function with the proper encodings, escapes, etc. That got me to t

Re: [twitter-dev] Re: /statuses/filter.json returns 401 with OAuth

2011-02-23 Thread Matt Harris
Hey Josiah, Glad you got it working. I have an OAuth library I put together which you might want to look at. It's in PHP and shows the OAuth signing process. It also supports multipart uploads and the Streaming API. You can find it on github: https://github.com/themattharris/tmhOAuth Best, @t

Re: [twitter-dev] twaud.io api: anyone manage to get it working?

2011-02-23 Thread Matt Harris
Hi Seth, Twaud.io isn't part of the Twitter API but i'll try and help you anyway. The first thing to note is the Headers should be of the format X-Verify-Credentials-Authorization. The x_verify_credentials_authorization is mentioned because Twaud.io supports the OAuth Echo parameters in the heade

Re: [twitter-dev] Http Response code handling

2011-02-23 Thread Matt Harris
Hi Umashankar, If you receive a 420 error you should follow the back off strategy I mentioned to Zaver. We don't discuss how Seach handles it's rate limiting, just approaches on what to do if you fine yourself rate limited. Best, @themattharris Developer Advocate, Twitter http://twitter.com/thema

Re: [twitter-dev] Streaming API access level limit

2011-02-23 Thread Matt Harris
Hi J, The authoritative information for the Streaming API is under the /pages/ path and you should use that for guidance. The number of connections you are allowed to the Streaming API is described in the Streaming API Concepts document: http://dev.twitter.com/pages/streaming_api_concepts It

[twitter-dev] OAuth Login Issues

2011-02-23 Thread courtstarr
We launched invites today on http://eightbit.me using the @eightbit account. Everything during private beta and most of the day was working great but now people are getting the following when people try to log in using Twitter. Woah there! This page is no longer valid. It looks like someone alrea

Re: [twitter-dev] OAuth Login Issues

2011-02-23 Thread Taylor Singletary
Hey there, This happens now & then right now, even when you're doing everything correct -- it should be happening less frequently in the near future. Often a simple refresh of the authorize or authenticate page will correct the issue. If you're seeing the issue consistently and without fail, veri

[twitter-dev] Re: Sharing a link on Twitter via an email

2011-02-23 Thread Jonathan Strauss
Hey Lukas, This is pretty much the exact scenario for which we designed the awe.sm /share endpoint documented here: https://github.com/awesm/awesm-dev-tools/wiki/Create-API#share awe.sm creates Twitter-friendly tracking links. But unlike conventional URL shorteners, we create a unique tracking l

[twitter-dev] Re: custom share button and following - works for one twitter user but not for another

2011-02-23 Thread Jonathan Strauss
Are you already following the second Twitter account (i.e. schoolsvhunger) from your logged in Twitter user? The suggestions will only show you up to 2 Twitter users you don't currently follow, which is why you have the option to specify up to 7 (1 via and up to 6 related). -jonathan On Feb 22, 8