[twitter-dev] Re: Followers with time they followed

2009-07-19 Thread Stuart
2009/7/19 niff nick.fr...@gmail.com: Hello everyone, I'm trying to pull a list of followers, including the time they started following. I'm not sure what method should be used for this. Here's what I thought about so far and didn't work. - ids.xml (obviously not) - followers.xml the more

[twitter-dev] Re: Twitter is not making money

2009-07-19 Thread Andrew Badera
On Sat, Jul 18, 2009 at 6:57 PM, M. Edward (Ed) Borasky zzn...@gmail.comwrote: On Sat, Jul 18, 2009 at 12:53 AM, Kevin Mesiabke...@mesiablabs.com wrote: A per follower charge is a fast way to obliterate the value of Twitter as a platform. I disagree. Businesses are using Twitter to

[twitter-dev] Re: Twitter is not making money

2009-07-19 Thread Andrew Badera
On Sun, Jul 19, 2009 at 4:47 AM, Andrew Badera and...@badera.us wrote: On Sat, Jul 18, 2009 at 6:57 PM, M. Edward (Ed) Borasky zzn...@gmail.comwrote: On Sat, Jul 18, 2009 at 12:53 AM, Kevin Mesiabke...@mesiablabs.com wrote: A per follower charge is a fast way to obliterate the value of

[twitter-dev] Re: Tweet Photo

2009-07-19 Thread Andrew Badera
On Sat, Jul 18, 2009 at 10:37 PM, Kevin Mesiab ke...@mesiablabs.com wrote: Hey guys, just a quick FYI. TweetPhoto has a revenue share option for developers. You can earn revenue from google adwords displayed near photos uploaded by your client. Some of you I know have great volume and this

[twitter-dev] duplicate and/or inconsistent results when querying search api in quick succession

2009-07-19 Thread Zac Witte
For most of this week I have been seeing duplicate tweets appear when I quickly paginate through a set of results using the json search api. This only happens when making requests in quick succession. I have verified it in my own java application trying two different json parsers as well as this

[twitter-dev] Twitter Desktop Client in C#/.NET with oAuth + PIN

2009-07-19 Thread CTW
Hi, Tried posting this earlier but I'm not seeing it so apologies if this is a repost. I noticed there was only one .NET example in the Twitter wiki using oAuth, and it doesn't illustrate how to handle PINs in a desktop app. So here are a couple examples based on the C# oAuth/Twitter library by

[twitter-dev] Bad Requests on Return

2009-07-19 Thread Jason
I'm using class.twitter.php as my api interface. I JUST started messing around with the twitter API. Here's the following code: ?php error_reporting(E_ALL); require_once 'class.twitter.php'; $username = '*'; $password = '*'; $twitter = new twitter(); $twitter-username = $username;

[twitter-dev] Re: Twitter is not making money

2009-07-19 Thread Jennie Lees
On Sun, Jul 19, 2009 at 12:02 AM, M. Edward (Ed) Borasky zzn...@gmail.comwrote: Man, it is so good to hear this from someone who's actually done it! The other point, though, is that the real thing, even traffic / social network analysis, is compute-resource intensive and requires a kind of

[twitter-dev] favorites, sort by date added

2009-07-19 Thread scottplan
I've got this same interest http://bit.ly/IX8hU, to sort favorites by the date when I select them. So I'm mostly wondering whether there's an accessible date element that I can pull into a feed. I'm imagining I'll need a combination of an API key, a loop in pipes, and some tips from someone in

[twitter-dev] Re: Twitter is not making money

2009-07-19 Thread M. Edward (Ed) Borasky
On Sat, Jul 18, 2009 at 4:19 PM, Jennie Leestrin...@gmail.com wrote: I've been working on commercialising sentiment analysis research, specifically tuned to microblogs and social media, and my investigations - both academic and talking to potential customers - lead me to believe it really is

[twitter-dev] What is users/show time caching for profile_image_url ?

2009-07-19 Thread Kevin Dunglas
Hello, I'm working on a program which update periodically some Twitter accounts avatars. Here is the process: -- while True: GET http://twitter.com/users/show/myuser.xml GET avatar located at the url specified in the profile_image_url XML tag Make some change to the avatar POST the new

[twitter-dev] Re: Twitter Desktop Client in C#/.NET with oAuth + PIN

2009-07-19 Thread Bojan Rajkovic
-BEGIN PGP SIGNED MESSAGE- Hash: SHA512 CTW wrote: Hi, Tried posting this earlier but I'm not seeing it so apologies if this is a repost. I noticed there was only one .NET example in the Twitter wiki using oAuth, and it doesn't illustrate how to handle PINs in a desktop app. So

[twitter-dev] Tool that shows who is using specific tags?

2009-07-19 Thread Nick Arnett
I've searched a bit, but it's hard to write a good query for this one - anybody know of a tool that will show a list of users who have used a specific tag? It would be simple and I'll write it myself if need be. All it has to do is search for the tag and then compile and present a list of unique

[twitter-dev] Re: Twitter Desktop Client in C#/.NET with oAuth + PIN

2009-07-19 Thread Andrew Badera
On Sat, Jul 18, 2009 at 7:07 PM, CTW ja...@codingthewheel.com wrote: Hi, Tried posting this earlier but I'm not seeing it so apologies if this is a repost. I noticed there was only one .NET example in the Twitter wiki using oAuth, and it doesn't illustrate how to handle PINs in a desktop

[twitter-dev] Re: status ping?

2009-07-19 Thread Andrew Badera
On Sat, Jul 18, 2009 at 8:07 AM, Stuart stut...@gmail.com wrote: 2009/7/18 Andrew Badera and...@badera.us: What's the best/lowest impact fashion of polling Twitter for status if you're not already performing an operation? Does the help/test method work (well) for this? Looking to poll

[twitter-dev] oauth revoke access triggers call to app

2009-07-19 Thread freefall
If a user revokes access to my application my application should know about this so I handle it on my side. Have I missed something or does the revoke feature not attempt to contact my app?

[twitter-dev] Re: oauth revoke access triggers call to app

2009-07-19 Thread Abraham Williams
There is currently an issue open for that: http://code.google.com/p/twitter-api/issues/detail?id=545 On Sun, Jul 19, 2009 at 12:56, freefall tehgame...@googlemail.com wrote: If a user revokes access to my application my application should know about this so I handle it on my side. Have I

[twitter-dev] Re: Bad Requests on Return

2009-07-19 Thread Abraham Williams
What does the following print?: print_r($twitter-responseInfo); On Sat, Jul 18, 2009 at 20:04, Jason jason.ta...@gmail.com wrote: I'm using class.twitter.php as my api interface. I JUST started messing around with the twitter API. Here's the following code: ?php

[twitter-dev] Re: Tweet Photo

2009-07-19 Thread Abraham Williams
Here is a direct link for those interested: http://www.tweetphoto.com/developer-revenue-program.php On Sun, Jul 19, 2009 at 04:03, Andrew Badera and...@badera.us wrote: On Sat, Jul 18, 2009 at 10:37 PM, Kevin Mesiab ke...@mesiablabs.comwrote: Hey guys, just a quick FYI. TweetPhoto has a

[twitter-dev] Re: Followers with time they followed

2009-07-19 Thread Abraham Williams
You could pull social graphs for accounts every hour and have approximate times for future follows. Abraham On Sun, Jul 19, 2009 at 01:45, Stuart stut...@gmail.com wrote: 2009/7/19 niff nick.fr...@gmail.com: Hello everyone, I'm trying to pull a list of followers, including the time

[twitter-dev] Re: Followers with time they followed

2009-07-19 Thread Howard Siegel
On Sat, Jul 18, 2009 at 23:45, Stuart stut...@gmail.com wrote: 2009/7/19 niff nick.fr...@gmail.com: Hello everyone, I'm trying to pull a list of followers, including the time they started following. I'm not sure what method should be used for this. Here's what I thought about so

[twitter-dev] Re: Followers with time they followed

2009-07-19 Thread Damon Clinkscales
On Sun, Jul 19, 2009 at 4:49 PM, Howard Siegelhsie...@gmail.com wrote: Your followers on the twitter web site are (or at least were last time I checked) listed in descending order from the newest to the oldest follower.  Do they just keep the list in order or do they keep the time of follow

[twitter-dev] Re: Developers unite – throw off the yoke of Twitter centralization and publish your tweetstreams!

2009-07-19 Thread Abraham Williams
You can already set up your own Laconica server and have all of you updates automatically posted to Twitter. You can also set up Friendfeed to pull in all of your statuses as another source. There are many ways to reduce or mitigate reliance on Twitter. Abraham On Sat, Jul 18, 2009 at 15:13,

[twitter-dev] Re: Tool that shows who is using specific tags?

2009-07-19 Thread whoiskb
Do you mean something like this? http://hashtags.org/ On Jul 19, 11:09 am, Nick Arnett nick.arn...@gmail.com wrote: I've searched a bit, but it's hard to write a good query for this one - anybody know of a tool that will show a list of users who have used a specific tag?  It would be simple

[twitter-dev] Re: Tool that shows who is using specific tags?

2009-07-19 Thread Nick Arnett
On Sun, Jul 19, 2009 at 6:16 PM, whoiskb whoi...@gmail.com wrote: Do you mean something like this? http://hashtags.org/ I'm assuming that you're joking... unless there's something there that returns a unique list of users rather than a list of tweets. Nick

[twitter-dev] Re: Tweet Photo

2009-07-19 Thread Swaroop
Hmm, is this even allowed (by Adsense)?

[twitter-dev] Re: Tweet Photo

2009-07-19 Thread Kevin Mesiab
Have at it https://www.google.com/adsense/localized-terms On Sun, Jul 19, 2009 at 6:11 PM, Swaroop rh.swar...@gmail.com wrote: Hmm, is this even allowed (by Adsense)? https://www.google.com/adsense/localized-terms -- Kevin Mesiab CEO, Mesiab Labs L.L.C. http://twitter.com/kmesiab

[twitter-dev] Re: Matt Sanford, signing off.

2009-07-19 Thread Doug Williams
We will certainly miss having you on the team, Matt. Regards, Doug On Fri, Jul 17, 2009 at 11:19 PM, surya sravanthi sravanthi.su...@gmail.com wrote: All the bast Matt!!! Thanks for all you r help . On Sat, Jul 18, 2009 at 2:48 AM, Matt Sanfordm...@twitter.com wrote: Hi