[twitter-dev] Re: Finding the intersection of Friends + Followers

2009-04-28 Thread Chad Etzel
On Wed, Apr 29, 2009 at 12:53 AM, markdsievers wrote: > ...Following BB Following A...B can DM > A...A can DM B > A                FALSE                TRUE > FALSE            TRUE > > Let me know if you agree/disagree. I agree that your truth table got mangled by som

[twitter-dev] Re: Finding the intersection of Friends + Followers

2009-04-28 Thread markdsievers
Sorry, the two said methods should have been the two Social Graph methods...Social Graph Methods: friends/ids & followers/ids. On Apr 29, 12:11 pm, Mark Sievers wrote: > Hello All, > > So a Friend(someone I am following) can only be Direct Messaged when > they are also following me, ie the relat

[twitter-dev] Re: Finding the intersection of Friends + Followers

2009-04-28 Thread markdsievers
Thanks for pointing out that bahavioural propertry, that was an oversight on my behalf. However I'm not sure the second proposition is correct, I think the DM paradigm can be defined by; "Direct Messages can only be sent to people who are following (and are not blocked or flagged as protected) m

[twitter-dev] Re: Unable to Connect to tcp://twitter.com:80. Error #110: Connection timed out

2009-04-28 Thread Dusty
It tapered off and stopped. Looks like the connection is normal now. I guess it was just a hiccup in the network. The sky isn't falling after all! :) On Apr 28, 6:23 pm, explicious wrote: > i noticed trouble connecting from some networks but not others. > probably straighten out. > > On Apr 28,

[twitter-dev] Re: Finding the intersection of Friends + Followers

2009-04-28 Thread Abraham Williams
It is unidirectional. Account_a has to follow account_b for account_b to send a DM to account_a. Account_b does *not* need to be following account_a to send a DM to account_a. This gets a little murky when protected accounts are involved. Take a look at: http://apiwiki.twitter.com/Twitter-REST-AP

[twitter-dev] Finding the intersection of Friends + Followers

2009-04-28 Thread Mark Sievers
Hello All, So a Friend(someone I am following) can only be Direct Messaged when they are also following me, ie the relationship is bidirectional. These two lists can be aquired using statuses/friends and statuses/ followers. However is there a way (without using an O(n2) loop) to find the inters

[twitter-dev] most efficient method for followers & friends count

2009-04-28 Thread API_Tester
Just need number of followers and number of friends. Method 1: users/show and use the followers_count and friends_count values. Problem: The numbers are updating only on a status update. Example: At last status update if followers_count was 2420 and then there have been 30 more followers. Unless

[twitter-dev] Re: Is /statuses/replies deprecated?

2009-04-28 Thread Doug Williams
No excuses. Thanks for calling it Chad. statuses/replies is an alias to statuses/mentions. statuses/replies will not be going away but we would prefer you to use statuses/mentions if at all possible. Thanks, Doug -- Doug Williams Twitter Platform Support http://twitter.com/dougw On Tue, Apr

[twitter-dev] Re: Is /statuses/replies deprecated?

2009-04-28 Thread Chad Etzel
Um.. can we get a do over on that post, please? I think we got the gist, but just to make sure that nothing was lost in translation (since I'm spotting a few typos/omissions)... Thanks, -Chad On Tue, Apr 28, 2009 at 8:04 PM, Doug Williams wrote: > With the change from @replies -> mentions we t

[twitter-dev] Re: Is /statuses/replies deprecated?

2009-04-28 Thread Doug Williams
With the change from @replies -> mentions we the statuses/replies method to statuses/mentions. Rest assured statuses/mentions will still be available, but to reduce confusion and promote the new standard we removed statuses/replies in favor of statuses/mentions in the documentation. In other words

[twitter-dev] Is /statuses/replies deprecated?

2009-04-28 Thread Arnaud
Hi, I just noticed the /statuses/replies method was not mentionned anymore on the Twitter API wiki. It's quite disturbing, as I didn't see anything in the changelogs. Is this method deprecated? Is it going to be? Or is it some kind of symlink to /statuses/mentions ? All the best, Arnaud.

[twitter-dev] Re: http://twitter.com/friendships/exists.json returning just "true" or "false"?

2009-04-28 Thread Doug Williams
Alex and I discussed this defect. While this is the desired behavior we can't exactly change this as it would break existing clients. I will document this in the wiki but the fix is going to have to wait for the next full release of the API. Thanks, Doug --

[twitter-dev] Re: Specify Page Size on page enabled API Methods

2009-04-28 Thread Chad Etzel
"count" is not documented on that page of the wiki, so either it should be added, or stated that it's not supported. -chad On Tue, Apr 28, 2009 at 7:31 PM, Matt Sanford wrote: > > Hi Dave, > >    Take a look at the count parameter, like …/followers.json?count=5. If raw > data size is a problem y

[twitter-dev] Re: Specify Page Size on page enabled API Methods

2009-04-28 Thread Matt Sanford
Hi Dave, Take a look at the count parameter, like …/followers.json? count=5. If raw data size is a problem you probably want to go with the lighter weight JSON if you're not already. Thanks; – Matt Sanford / @mzsanford Twitter Dev On Apr 28, 2009, at 3:10 PM, devangel wrote: I

[twitter-dev] Re: http://twitter.com/friendships/exists.json returning just "true" or "false"?

2009-04-28 Thread Sascha A. Carlin
On 28 Apr., 18:09, Doug Williams wrote: > Yes it should. I'll check into that. Thanks :-) - sac

[twitter-dev] Specify Page Size on page enabled API Methods

2009-04-28 Thread devangel
Is there a way to specify the number of entries (page size) returned on a page of results? I'm calling statuses/followers and the response size to over 100K bytes which bumps up against one of the limits in my environment. I see that I can specify the page I want, but it would be really useful t

[twitter-dev] Re: Unable to Connect to tcp://twitter.com:80. Error #110: Connection timed out

2009-04-28 Thread explicious
i noticed trouble connecting from some networks but not others. probably straighten out. On Apr 28, 4:13 pm, DustyReagan wrote: > Is anyone else getting the error: Unable to Connect to tcp://twitter.com:80. > Error #110: Connection timed out > > I have to apps on with 2 different white-listed ac

[twitter-dev] Unable to Connect to tcp://twitter.com:80. Error #110: Connection timed out

2009-04-28 Thread DustyReagan
Is anyone else getting the error: Unable to Connect to tcp://twitter.com:80. Error #110: Connection timed out I have to apps on with 2 different white-listed accounts on static IP addresses getting this error. Am I alone? My apps are: http://friendorfollow.com http://featuredusers.com I was get

[twitter-dev] Re: Twitter IDs from XML data

2009-04-28 Thread Abraham Williams
status_id and user_id are both sequential. On Tue, Apr 28, 2009 at 16:46, jeff bishop wrote: > Hello, > > Is it safe to assume that Twitter IDs are sequential in their creation? I > mean, if I sort by TwitterID, is that safe to insure the timeline is in the > right order (show in descending ord

[twitter-dev] Twitter IDs from XML data

2009-04-28 Thread jeff bishop
Hello, Is it safe to assume that Twitter IDs are sequential in their creation? I mean, if I sort by TwitterID, is that safe to insure the timeline is in the right order (show in descending order)? I know I can sort by the timestamp but that will require quite a bit of logic based on my platform

[twitter-dev] Re: Freelance Twitter API Dev directory?

2009-04-28 Thread Mike Lewis
Hi, Please add me to the list Real Name: Mike Lewis Twitter Username: @mikelikespie Email: m...@narwhalconsulting.com Web page: http://narwhalconsulting.com Example: tweeptracker.com Consulting firm out of SF bay area. Expertise in Python, Pylons, Postgres, REST API's, OAuth, AJAX, Flex, Javas

[twitter-dev] Re: oAuth problem.

2009-04-28 Thread Abraham Williams
What OAuth library are you using? Check to make sure a new nonce is being generated for each call. On Thu, Apr 23, 2009 at 20:16, Tmeister wrote: > > Hi. > > I'm trying login via oAuth. > > Everything works until i want to make calls to the api, in my callback > script, i get the oauth_token and

[twitter-dev] Re: WWW.IOFFERKICKS.NETcheaper nike shoes g-satr kidrobot hoodies ed hardy star red monkey gino green global true religion ed-hardy kidrobot jeans hoodies china supplier wholesaler ex

2009-04-28 Thread Doug Williams
Peter, that made me chuckle. ... deleting ... Thanks, Doug Doug Williams | Platform Support | Twitter, Inc. 539 Bryant St. Suite 402, San Francisco, CA 94107 http://twitter.com/dougw On Tue, Apr 28, 2009 at 11:53 AM, Peter Dent

[twitter-dev] Re: Can you use OAuth and direct_messages/new?

2009-04-28 Thread asylumet
Sorry I guess I should have also specified that I am using PHP but I am going to look over the link you just gave and see if I can figure something out from it. Thanx On Apr 28, 2:47 pm, Matt Sanford wrote: > Hi there, > >      You should be able to send direct messages from OAuth. It works   >

[twitter-dev] Re: WWW.IOFFERKICKS.NETcheaper nike shoes g-satr kidrobot hoodies ed hardy star red monkey gino green global true religion ed-hardy kidrobot jeans hoodies china supplier wholesaler ex

2009-04-28 Thread Andrew Badera
bwaahahaha (-: On Tue, Apr 28, 2009 at 2:53 PM, Peter Denton wrote: > is this a source parameter question? > > On Tue, Apr 28, 2009 at 11:37 AM, fgbhfvbh...@gmail.com < > fgbhfvbh...@gmail.com> wrote: > >> >> Get Nike Shoes at Super Cheap Prices >> Discount Nike air jordans (WWW.IOFFERKICKS.NET

[twitter-dev] Re: WWW.IOFFERKICKS.NETcheaper nike shoes g-satr kidrobot hoodies ed hardy star red monkey gino green global true religion ed-hardy kidrobot jeans hoodies china supplier wholesaler ex

2009-04-28 Thread Peter Denton
is this a source parameter question? On Tue, Apr 28, 2009 at 11:37 AM, fgbhfvbh...@gmail.com < fgbhfvbh...@gmail.com> wrote: > > Get Nike Shoes at Super Cheap Prices > Discount Nike air jordans (WWW.IOFFERKICKS.NET) > Discount Nike Air Max 90 Sneakers (WWW.IOFFERKICKS.NET) > Discount Nike Air M

[twitter-dev] Re: Can you use OAuth and direct_messages/new?

2009-04-28 Thread Matt Sanford
Hi there, You should be able to send direct messages from OAuth. It works pretty much the same as the example [1] that updates status. Thanks; – Matt Sanford / @mzsanford Twitter Dev [1] - http://apiwiki.twitter.com/OAuth+Example+-+Ruby On Apr 28, 2009, at 11:14 AM, asylumet wrote

[twitter-dev] WWW.IOFFERKICKS.NETcheaper nike shoes g-satr kidrobot hoodies ed hardy star red monkey gino green global true religion ed-hardy kidrobot jeans hoodies china supplier wholesaler exporte

2009-04-28 Thread fgbhfvbh...@gmail.com
Get Nike Shoes at Super Cheap Prices Discount Nike air jordans (WWW.IOFFERKICKS.NET) Discount Nike Air Max 90 Sneakers (WWW.IOFFERKICKS.NET) Discount Nike Air Max 91 Supplier (WWW.IOFFERKICKS.NET) Discount Nike Air Max 95 Shoes Supplier (WWW.IOFFERKICKS.NET) Discount Nike Air Max 97 Trainers

[twitter-dev] Can you use OAuth and direct_messages/new?

2009-04-28 Thread asylumet
Is it possible to use OAuth and direct_messages/new to post new messages to a twitter account or am I just wasting my time. I have been able to do it just fine with CURL but this is not desired as it would require my app to store my users username(s) and password(s) in plain text and that is not a

[twitter-dev] Re: Twitter DM Question-Imporatant

2009-04-28 Thread Abraham Williams
This question would be better directed at http://help.twitter.com. On Tue, Apr 28, 2009 at 11:02, Travel Deals wrote: > > I just discovered that all of my DM's, Direct Messages, on Twitter > were now open on my public time line (to people that follow me) why > this happening? > -- Abraham Wi

[twitter-dev] Re: Reg: statuses/show method in REST API

2009-04-28 Thread Doug Williams
Please see http://code.google.com/p/twitter-api/issues/detail?id=474 Doug Williams Twitter Platform Support http://twitter.com/dougw On Apr 28, 6:26 am, kkp <33spa...@gmail.com> wrote: > Hi, > > I have a  problem while getting the twitter user information using API > method "statuses/show". > I

[twitter-dev] 401: Unauthorized application or token on friendship/exists

2009-04-28 Thread tayknight
I'm fairly sure I'm getting a proper token. Using the page http://www.hueniverse.com/hueniverse/2008/10/beginners-gui-1.html I get the same signature as in my failing url. GET looks like: http://twitter.com/friendship/exists.json? oauth_consumer_key=Rg4VBVUvAoThpl78duF3Rg &oauth_nonce=37549497112

[twitter-dev] Twitter DM Question-Imporatant

2009-04-28 Thread Travel Deals
I just discovered that all of my DM's, Direct Messages, on Twitter were now open on my public time line (to people that follow me) why this happening?

[twitter-dev] Re: some user cant send reply's ?

2009-04-28 Thread Doug Williams
Chad is correct. Follow @av75vo and the updates will appear in twitter.com/home. The updates correctly appear in twitter.com/replies. From my investigation all is functioning as expected. Doug Williams Twitter API Support http://twitter.com/dougw On Tue, Apr 28, 2009 at 8:21 AM, Apostol Victor

[twitter-dev] Re: Suggestion for image uploads from 3rd party applications

2009-04-28 Thread DaveK
I was just thinking in terms of reducing the upload bandwidth and duplicate storage of images. I'm not sure how useful it would be as a third-party app but I might give it some thought. Dave Kinsella http://twitter.com/Techn0tic On Apr 27, 6:54 pm, Doug Williams wrote: > This is not an enhancem

[twitter-dev] Re: http://twitter.com/friendships/exists.json returning just "true" or "false"?

2009-04-28 Thread Doug Williams
Yes it should. I'll check into that. Related is this enhancement request [1]. 1. http://code.google.com/p/twitter-api/issues/detail?id=532 Doug Williams Twitter API Support http://twitter.com/dougw On Tue, Apr 28, 2009 at 8:40 AM, Sascha A. Carlin wrote: > > Hi there, > > http://twitter.com/

[twitter-dev] http://twitter.com/friendships/exists.json returning just "true" or "false"?

2009-04-28 Thread Sascha A. Carlin
Hi there, http://twitter.com/friendships/exists.json?user_a=itst&user_b=al3x returns true Shouldn't that be {"friends" : true} or something? - sac

[twitter-dev] Re: Friendship Create

2009-04-28 Thread Matt Sanford
Hi there, They must be sorted for the signature, but reviewing the code it looks like no matter the order you send them in we're re-sorting to validate the signature. So, you can send them either way. Sending them sorted will prevent the 3-email exchange where we verify they are inde

[twitter-dev] Re: some user cant send reply's ?

2009-04-28 Thread Apostol Victor
nop is not in the "replies" timeline is possible that @av75ro was mark to be spam or something? On Tue, Apr 28, 2009 at 6:03 PM, Chad Etzel wrote: > > I answered my own question: No, it appears they are not. > > The reply from @av75ro won't appear in @apostol_victor's > friends_timeline unless @

[twitter-dev] Re: Friendship Create

2009-04-28 Thread tayknight
Hey, Paul. I'm bumping my head against a similar thing in friendship/ exists (which is a GET request, and I'm getting a 401 error, not 500). I know the parameters have to be sorted for signature creation. But the OAuth spec docs seem to contradict if they have to be sorted in the actual request. I

[twitter-dev] Re: some user cant send reply's ?

2009-04-28 Thread Chad Etzel
I answered my own question: No, it appears they are not. The reply from @av75ro won't appear in @apostol_victor's friends_timeline unless @apostol_victor is following @av75ro. It should appear in the "replies" timeline, however. Have you checked that? -Chad On Tue, Apr 28, 2009 at 11:01 AM, C

[twitter-dev] Re: some user cant send reply's ?

2009-04-28 Thread Chad Etzel
Are @av75ro and @apostol_victor following each other? -Chad On Tue, Apr 28, 2009 at 10:49 AM, Dossy Shiobara wrote: > > Your "boot" wouldn't be Canadian, by any chance? > > On 4/28/09 7:44 AM, Apostol Victor wrote: >> >> ok sorry >> >> i want to make a boot from @av75ro >> people can send reques

[twitter-dev] Re: trying to learn API's.. and got error..

2009-04-28 Thread Matt Sanford
Hi there, I don't know anything about the winterwell.jtwitter.* classes but the "null" in your error message would indicate a NullPointerException. I can access the same URL as in the error message so it seems to be something library specific. You might want to try and contact whoeve

[twitter-dev] Re: some user cant send reply's ?

2009-04-28 Thread Dossy Shiobara
Your "boot" wouldn't be Canadian, by any chance? On 4/28/09 7:44 AM, Apostol Victor wrote: ok sorry i want to make a boot from @av75ro people can send request to him and the boot will reply everything looks fine but the replys don't get in user time line example http://twitter.com/av75ro/sta

[twitter-dev] Re: a new application

2009-04-28 Thread Stuart
I think you're not understanding that there's a definite line between Twitter itself and the applications we build that use the API. No application you build is ever like to "become part of Twitter". If your application needs to store any data you need to provide that as part of your application

[twitter-dev] trying to learn API's.. and got error..

2009-04-28 Thread guru
I have just started learning use of API's. so I wrote a program and got an exception. I am using netbeans 6.1, java 1.6 Program: (am I suppose to write any thing else apart from this??? import winterwell.jtwitter.*; public class MyClass { public static void main(String[] args) {

[twitter-dev] Reg: statuses/show method in REST API

2009-04-28 Thread kkp
Hi, I have a problem while getting the twitter user information using API method "statuses/show". I have a account "https://twitter.com/scpltest"; . It contains 6 followings and 1 follower. But when i am trying to get the user information using the API method (using following URL) http://twitte

[twitter-dev] Re: some user cant send reply's ?

2009-04-28 Thread Apostol Victor
ok sorry i want to make a boot from @av75ro people can send request to him and the boot will reply everything looks fine but the replys don't get in user time line example http://twitter.com/av75ro/status/1623930774 i expect this reply to go to @apostol_victor time line but i can't find the re

[twitter-dev] Re: a new application

2009-04-28 Thread guru
Thanks Andrew for the link.. I am going to check it for my requirement.. @Matt.. Thats true. Here is an example which explains everything about my need and the application.. Not My Type Application : Suppose there is an application called TwittShareUpdates which provides daily share updates for

[twitter-dev] Re: Signup URL?

2009-04-28 Thread TjL
On Sun, Apr 26, 2009 at 8:13 AM, Pleasant Software wrote: > > Which URL should I use to link to Twitter's signup page on a iPhone? > > I tried http://twitter.com/signup but this results in a error "Extra > content at the end of the document" in Safari. > > When using http://twitter.com or http://

[twitter-dev] Re: Callback url during development

2009-04-28 Thread Dossy Shiobara
On 4/27/09 11:56 PM, Mike Lewis wrote: It doesn't allow you to sethttp://localhost/ orhttp://127.0.0.1 as a callback URL. This is rather frustrating because I don't want to have to make a fake host and make all my developers make the same fake host on their respective machines as well, just t

[twitter-dev] Re: Seeing truncated XML responses again

2009-04-28 Thread Dossy Shiobara
On 4/27/09 10:37 PM, Doug Williams wrote: Are you still seeing this? Not since 4/27 4:04 PM. Thanks. -- Dossy Shiobara | do...@panoptic.com | http://dossy.org/ Panoptic Computer Network | http://panoptic.com/ "He realized the fastest way to change is to laugh at your own