Re: [twitter-dev] Call for action #StopBritneyBots

2009-12-01 Thread Dave Sherohman
On Mon, Nov 30, 2009 at 04:23:40PM -0500, TJ Luoma wrote: On Mon, Nov 30, 2009 at 4:19 PM, M. Edward (Ed) Borasky zzn...@gmail.com wrote: Twitter, what say you? Developer community, what say you? Twitter, Inc. can't even keep up with porn spammers reported manually using the Report As

Re: [twitter-dev] Re: Oauth on j2me app

2009-12-01 Thread Josh Roesslein
Yeah that is pretty much the gist of it. On Tue, Dec 1, 2009 at 12:36 AM, Fauzil Hamdi asfau...@gmail.com wrote: correct me if i wrong : no access token yet : - request token - redirect to oauth/authorize with the token as parameter - users allow application to access their twitter - users

Re: [twitter-dev] Call for action #StopBritneyBots

2009-12-01 Thread Josh Roesslein
Hopefully as time goes on twitter will start pushing out more sophisticated anti-spam measures. On twitter.com/jobs does have an open position for anti-spam engineer so they are actively seeking to form a bigger team for this cause. So if you are looking for work and are a spam killing ninja might

Re: [twitter-dev] Re: Oauth on j2me app

2009-12-01 Thread Fauzil Hamdi
really ? so, if users lost their access token, application must request again and users will input the pin code again. is that so ? 2009/12/1 Josh Roesslein jroessl...@gmail.com Yeah that is pretty much the gist of it. On Tue, Dec 1, 2009 at 12:36 AM, Fauzil Hamdi asfau...@gmail.com wrote:

Re: [twitter-dev] Re: Oauth on j2me app

2009-12-01 Thread Josh Roesslein
If the access token is lost you pretty much start the process over again. Get a new request token, redirect to twitter, user provides new pin, get new access token, and use it. On Tue, Dec 1, 2009 at 2:34 AM, Fauzil Hamdi asfau...@gmail.com wrote: really ? so, if users lost their access token,

[twitter-dev] Re: Call for action #StopBritneyBots

2009-12-01 Thread M. Edward (Ed) Borasky
I am looking for work but am not willing to relocate to San Francisco. The cost of living there is insane. Not that where I am now, Portland, Oregon, is much better. On Dec 1, 12:30 am, Josh Roesslein jroessl...@gmail.com wrote: Hopefully as time goes on twitter will start pushing out more

Re: [twitter-dev] Re: Oauth on j2me app

2009-12-01 Thread Fauzil Hamdi
ok thanks josh 2009/12/1 Josh Roesslein jroessl...@gmail.com If the access token is lost you pretty much start the process over again. Get a new request token, redirect to twitter, user provides new pin, get new access token, and use it. On Tue, Dec 1, 2009 at 2:34 AM, Fauzil Hamdi

[twitter-dev] Twitter + PHP + Oauth

2009-12-01 Thread Carlos Bacelar
Hi, Someone knows how can I update status on twitter using this library: https://docs.google.com/View?docID=dcf2dzzs_2339fzbfsf4 And, please, could send me, or show me, a functional example? Thanks.

[twitter-dev] How can I use Twitter Logo in ads and marketing campaign

2009-12-01 Thread thaitwitter...@hotmail.com
Dear Sir/Madam, We've been developing our software based on Twitter API ( already got white listed ) to feed all tweets to SMS and MSN ( Windows Live Messenger ) to users in Thailand. Now marketing team would like know exactly on how we can use Twitter Logo in our ads and marketing

[twitter-dev] Perl script for retrieving twits

2009-12-01 Thread Oreste
I'm using Net::Twitter module which is working nicely. I'm getting back a lot of variables, I need to grab just those variables giving me the message and date. Could you help me to find them out? This is the script I'm using: use Net::Twitter; use Data::Dumper; my $nt = Net::Twitter-new( traits

[twitter-dev] Re: What Is The Status of Twitter OAuth?

2009-12-01 Thread Duane Roelands
Use it or don't, and own your decision. It works. It's stable. It's more secure than Basic Auth. It's what Twitter wants you to use. What's the problem here? So tired of OAuth whining. If Twitter OAuth is stable enough for Twitter to recommend that that all third-party applications connect

Re: [twitter-dev] Re: What Is The Status of Twitter OAuth?

2009-12-01 Thread ryan alford
I never knew that asking questions would be considered whining. Twitter has never officially stated that OAuth is in production like they announce other features (like Lists). Now they seem to be telling developers to start moving to OAuth. You state to don't use it. It doesn't look like we

[twitter-dev] Re: Authorizing users for my app's API

2009-12-01 Thread Duane Roelands
Lee, TwitPic and TweetPhoto use Basic Auth for this; if you post a photo to TwitPic via the API, you've got to pass the Twitter username and the password. It works for those APIs, so it should work for yours. OAuth don't (yet) provide a good solution for the scenario you describe; until they do,

[twitter-dev] Re: What Is The Status of Twitter OAuth?

2009-12-01 Thread Duane Roelands
You state to don't use it. It doesn't look like we will have much of a choice soon. Twitter is recommending third-parties move to OAuth. Looks like it won't be long before basic auth is depreciated. No, what I said was use it or don't. Please don't misrepresent my statements. In other

Re: [twitter-dev] Re: What Is The Status of Twitter OAuth?

2009-12-01 Thread Abraham Williams
OAuth is still in beta so when something goes wrong Twitter can fly the *beta* flag. (Thanks Google) On Tue, Dec 1, 2009 at 09:30, ryan alford ryanalford...@gmail.com wrote: I never knew that asking questions would be considered whining. Twitter has never officially stated that OAuth is in

Re: [twitter-dev] Re: Authorizing users for my app's API

2009-12-01 Thread Abraham Williams
You should also require an https connection for these calls so I don't sniff their passwords when they use my wifi. On Tue, Dec 1, 2009 at 09:31, Duane Roelands duane.roela...@gmail.comwrote: My recommendation is that you -never- store those login credentials that are passed and require them

Re: [twitter-dev] How can I use Twitter Logo in ads and marketing campaign

2009-12-01 Thread Abraham Williams
Try email tradema...@twitter.com for clarification. On Tue, Dec 1, 2009 at 05:29, thaitwitter...@hotmail.com thaitwitter...@hotmail.com wrote: Dear Sir/Madam, We've been developing our software based on Twitter API ( already got white listed ) to feed all tweets to SMS and MSN (

[twitter-dev] Twitter status update with Basic Auth Lua

2009-12-01 Thread Prometheus3k
Hi guys, I'm using a desktop platform with a Lua scripting environment. The app I'm making is standalone and does not run in a browser. It can connect to http resources. I'm trying out a simple test to update a status but web services isn't a strong point of mine. I'm following Basic Auth for now

Re: [twitter-dev] Twitter status update with Basic Auth Lua

2009-12-01 Thread Josh Roesslein
Your basic auth value should be in a header not the post body. The other X- values I think also go into headers, but I don't provide those really so not sure. I'm not even sure if twitter pays attention to those. Josh On Tue, Dec 1, 2009 at 9:25 AM, Prometheus3k prometheu...@gmail.com wrote: Hi

Re: [twitter-dev] Twitter status update with Basic Auth Lua

2009-12-01 Thread Mark McBride
Correct on the headers... Also note that if you're making a post, you don't want status=... in the query string, you want it added to the body of the request. Are you using a specific Lua HTTP library? ---Mark On Tue, Dec 1, 2009 at 8:45 AM, Josh Roesslein jroessl...@gmail.com wrote: Your

Re: [twitter-dev] Re: Authorizing users for my app's API

2009-12-01 Thread Michael Steuer
And again this discussion dies off... I really don't understand why Twitter and most developers are so quiet about this. What's the plan for supporting 3rd party APIs via Oauth? Right now for those of us already exclusively Oauth based on Twitter's recommendation, or for the rest of you in the

[twitter-dev] Twitter Retweets in Streaming API?

2009-12-01 Thread hansamann
Hi all, it is my understanding that retweets should show up in the Twitter Streaming API and especially the 'filter' Stream which I am using. My last discussion a few weeks (months) ago with a Twitter Dev confirmed that. I am using the Twitter4J API which has support for the new new Retweet API,

[twitter-dev] Re: Retweet streams have been frozen for 2 weeks

2009-12-01 Thread hansamann
Could it be there are some issues with the streaming API and the retweets there, too? I cannot see retweeted messages in the new xml format there... just the normal Status payload. Sven On Nov 29, 6:34 am, John Kalucki jkalu...@gmail.com wrote: I forwarded this thread to the engineers who

[twitter-dev] Re: Twitter Retweets in Streaming API?

2009-12-01 Thread John Kalucki
Retweets are indeed showing up in all feeds. $ curl -s stream.twitter.com/1/statuses/sample.xml -uxxx:yyy | grep retweeted_status retweeted_status /retweeted_status retweeted_status /retweeted_status retweeted_status /retweeted_status retweeted_status /retweeted_status

[twitter-dev] List Issue

2009-12-01 Thread Paul Kinlan
Hi Guys, I am seeing something that I can't work out with the Lists API http://api.twitter.com/1/imrobg/lists.json reports no lists {lists:[], next_cursor:0, previous_cursor:0 }, however if you see twitter.com/imrobg he has lists and they are visible. Likewise if you query

[twitter-dev] streaming filter API giving only keepalives since 8pm pst last night

2009-12-01 Thread Zac Witte
Just before 8pm PST last night both my primary and secondary listening servers stopped receiving updates and skipped notices and are only getting keepalive messages. I tried restarting the process, but still only keepalives. Was the stream turned off? Is it just me? Thx, Zac

Re: [twitter-dev] streaming filter API giving only keepalives since 8pm pst last night

2009-12-01 Thread Mark McBride
Zac, can you let me know which userid you're using, the URL you're using to connect, and the time in UTC at which the error occurred? ---Mark On Tue, Dec 1, 2009 at 11:44 AM, Zac Witte zacwi...@gmail.com wrote: Just before 8pm PST last night both my primary and secondary listening servers

[twitter-dev] Re: Retweet streams have been frozen for 2 weeks

2009-12-01 Thread Peter Boctor
I'm having a similar issue. My Retweets by Others has been blank since my account got retweets enabled. I'm seeing this both on twitter.com and in Tweetie 2.1 on the iPhone so it appears that if you're affected it also affects the API. As of yesterday there is now a known issues article about

Re: [twitter-dev] Re: Retweet streams have been frozen for 2 weeks

2009-12-01 Thread Zac Bowling
The link to http://help.twitter.com/requests/new on the help twitter site VERY hard to find. It took me a long long time and getting lucky to stumble on it. The move to zendesk should make it easy to enter tickets :-P Zac Bowling

[twitter-dev] Re: streaming filter API giving only keepalives since 8pm pst last night

2009-12-01 Thread John Kalucki
I did a deploy at about that time, but only to tweek GC parameters. Another developer has reported a similar issue. Digging... -John Kalucki http://twitter.com/jkalucki Services, Twitter Inc. On Dec 1, 11:53 am, Mark McBride mmcbr...@twitter.com wrote: Zac, can you let me know which userid

[twitter-dev] Your friend wants to share their favorite sites with you

2009-12-01 Thread djrozenbaum1
StumbleUpon | Discover Your Web. Here are this week's most popular sites recommended by people like you on StumbleUpon. Photos http://www.stumbleupon.com/tag/photos/ Videos http://www.stumbleupon.com/tag/videos/ News http://www.stumbleupon.com/tag/news/ Arts

[twitter-dev] Your friend wants to share their favorite sites with you

2009-12-01 Thread djrozenbaum1
StumbleUpon | Discover Your Web. Here are this week's most popular sites recommended by people like you on StumbleUpon. Photos http://www.stumbleupon.com/tag/photos/ Videos http://www.stumbleupon.com/tag/videos/ News http://www.stumbleupon.com/tag/news/ Arts

[twitter-dev] Getting number of lists a user is on

2009-12-01 Thread Quy
Is there an API call that will allow me to grab the number of lists that a user is on? I thought the users/show call would do this but it doesn't. http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-users%C2%A0show Thanks, Quy

Re: [twitter-dev] Your friend wants to share their favorite sites with you

2009-12-01 Thread Cameron Kaiser
StumbleUpon | Discover Your Web. Here are this week's most popular sites recommended by people like you on StumbleUpon. I am cleaning this out. Sorry for the stumblespam. -- personal: http://www.cameronkaiser.com/ -- Cameron Kaiser * Floodgap Systems *

Re: [twitter-dev] Getting number of lists a user is on

2009-12-01 Thread John Meyer
http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-GET-list-memberships Iterate through and count. On 12/1/2009 1:28 PM, Quy wrote: Is there an API call that will allow me to grab the number of lists that a user is on? I thought the users/show call would do this but it doesn't.

[twitter-dev] Re: streaming filter API giving only keepalives since 8pm pst last night

2009-12-01 Thread John Kalucki
I've fixed this problem. It turns out that I accidentally deployed a bug fix branch onto a single server -- a branch, ironically, that contains an incomplete fix for a minor track bug, breaking track for other use cases. Double-irony: All other clusters have automated deploy processes in place to

[twitter-dev] Re: What Is The Status of Twitter OAuth?

2009-12-01 Thread Dewald Pretorius
Switching to OAuth is not a trivial issue for me. I will need to get more than 160,000 Twitter accounts switched over from Basic Auth to OAuth. That's why I will only do it on a stable production-level Twitter OAuth. I'm not going to inundate myself with user support requests because of Twitter

[twitter-dev] Twitter API Challenge

2009-12-01 Thread ash...@izea
Calling all Developers! The company I work for just launched a challenge/contest to come up with a new-and-exciting way to integrate our Twitter API into their site or platform. Figured this would be an awesome way to get in touch with some creative folks. It's an open challenge for any and all

[twitter-dev] Twitter API call to statuses/followers.json / xml - protected users out of sync.

2009-12-01 Thread James Buckingham
Hi there, Hope I'm in the right group for this, sorry if I'm not. I'm trying to build a little experiemental app using the Twitter API. As part of this I'm wanting to pull in the information on all my followers, using: http://twitter.com/statuses/followers.json I'm getting the results fine but

Re: [twitter-dev] Re: What Is The Status of Twitter OAuth?

2009-12-01 Thread Josh Roesslein
Yeah I understand your caution Dewald. It's not fun running into issues you have no control over and then taking the blame from you users. I would say begin implementing OAuth support in your product in prep for the depreciation of basic auth. Maybe even offer a hybrid approach where you support

[twitter-dev] Re: streaming filter API giving only keepalives since 8pm pst last night

2009-12-01 Thread Zac Witte
Thanks - all is well now. Zac On Dec 1, 1:17 pm, John Kalucki jkalu...@gmail.com wrote: I've fixed this problem. It turns out that I accidentally deployed a bug fix branch onto a single server -- a branch, ironically, that contains an incomplete fix for a minor track bug, breaking track for

[twitter-dev] Re: How can I use Twitter Logo in ads and marketing campaign

2009-12-01 Thread thaitwitter...@hotmail.com
Thanks I will email tradem...@twitter.com now..

[twitter-dev] statuses/user_timeline following propertie

2009-12-01 Thread dmsiva
I send http://twitter.com/statuses/user_timeline.xml request with one screen_name attribute. Then server give's me a list of status of this user. Each status have a user tag that contains following attribute. This following attribute refers to authenticated user? Why sometimes this attribute is

Re: [twitter-dev] statuses/user_timeline following propertie

2009-12-01 Thread Abraham Williams
http://groups.google.com/group/twitter-development-talk/browse_thread/thread/42ba883b9f8e3c6e?tvc=2 On Tue, Dec 1, 2009 at 19:44, dmsiva danielmartinssi...@gmail.com wrote: I send http://twitter.com/statuses/user_timeline.xml request with one screen_name attribute. Then server give's me a

[twitter-dev] Search API?

2009-12-01 Thread Cameron Kaiser
I'm getting repeated timeouts from the Search API. Any glitches going on? -- personal: http://www.cameronkaiser.com/ -- Cameron Kaiser * Floodgap Systems * www.floodgap.com * ckai...@floodgap.com -- Time is an illusion. Lunch time, doubly so. -- Douglas

[twitter-dev] reset-seconds in Twitter API

2009-12-01 Thread Quy
When I ping the rate limit Twitter API to get my status: http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-account%C2%A0rate_limit_status The reset-time-in-seconds is 1259717740 How do I interpret that? I ping it again but this number doesn't seem to change.

Re: [twitter-dev] reset-seconds in Twitter API

2009-12-01 Thread Ed Costello
On Tue, Dec 1, 2009 at 20:07, Quy quyten...@gmail.com wrote: How do I interpret that? I ping it again but this number doesn't seem to change. I believe it's the unix epoch, 1259717740 is/was Wed Dec 2 01:35:40 GMT 2009. That's the time when your rate limit will reset. -- -ed costello @epc

[twitter-dev] How does twitter recognize @username in tweets?

2009-12-01 Thread yegle
Hi I'm new here, and forgive me if someone have asked this question. I have a saved search which is yegle -...@yegle to track tweets which intends to mention me, I found some tweets with format described below can be found using yegle -...@yegle but also appear in my reply_timeline: Here is

[twitter-dev] Re: illegal unicode character \uffff

2009-12-01 Thread braver
Gardenhose apparently returns illegal Unicode, as confirmed by PostgreSQL and Perl's Encode, a very trusted, high-mileage code. We surely can trap illegal Unicode errors but need to know whether you're aware of it, the rationale, and plan of action, if any. -- Alexy On Nov 21, 5:10 pm, braver

[twitter-dev] Re: Perl script for retrieving twits

2009-12-01 Thread natefanaro
You just built an object. If you want to read tweets you have to use a function that retrieves them. For example, if you want to search for tweets my $r = $nt-search(hello world); print Dumper $r; It may help if you read the documentation for that module

[twitter-dev] Re: illegal unicode character \uffff

2009-12-01 Thread John Kalucki
In this case, this isn't the Streaming API. That encoding is almost certainly what was presented to Twitter, probably exactly as encoded by the client. In this case, I'd complain to: http://mobileways.de/products/gravity/gravity/ If you request the Tweet via the REST API, you'll see the same

[twitter-dev] Re: illegal unicode character \uffff

2009-12-01 Thread braver
John -- thanks for clarification! Certainly it's the data in Twitter's database as a whole, not just the Streaming API. One question is whether you should accept illegal Unicode? Probably it's a safer thing to do to avoid scaring the clients, but maybe you'd want to apply some filter before

[twitter-dev] Re: illegal unicode character \uffff

2009-12-01 Thread John Kalucki
Perhaps someone from Platform could weigh in on this? -John On Dec 1, 7:41 pm, braver delivera...@gmail.com wrote: John -- thanks for clarification!  Certainly it's the data in Twitter's database as a whole, not just the Streaming API.  One question is whether you should accept illegal

[twitter-dev] Re: Search API questions

2009-12-01 Thread enygmatic
Hi, Raffi Were you able to raise the cache issue with the search team? Seems the problem is worse than I thought. I have run my script (getting 25 results from search every 15 minutes, for Mumbai) for two days. The first day had 71% duplicate results due to the caching issue, while the second day