[twitter-dev] followers/ids result missing next_cursor and previous_cursor

2010-12-09 Thread Robbie Coleman
There is a previous post about this from 9/2010 without any response and I feared reply there would go unnoticed, so here is a new post (sorry) I cannot get a response json or xml that contains the documented next_cursor and previous_cursor. And without these, there is no way to get the full list

[twitter-dev] Re: Introduce yourself!

2010-12-09 Thread Robbie Coleman
I'm Gravity.com's Software Cleric & Social Shaman I am responsible for plugging our services into Twitter and Facebook to help bring you the things on the Internet that are the most interesting to you. We use Java for our back-end processing systems and PHP for our front-end sites and services.

[twitter-dev] Re: followers/ids

2010-12-09 Thread Robbie Coleman
I created a new post for this issue just because it's still broken, and I feared that only replying here would go unnoticed. http://j.mp/hY1GBh -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements T

[twitter-dev] What is "is_translator" element in user object?

2010-12-09 Thread Yusuke Yamamoto
Hi, As I stated in the subject, what is "is_translator" element found in user object? Thanks in advance, -- Yusuke Yamamoto yus...@mac.com this email is: [x] bloggable/tweetable [ ] private follow me on : http://twitter.com/yusukeyamamoto subscribe me at : http://samuraism.jp/ -- Twitter dev

[twitter-dev] Re: oauth_callback

2010-12-09 Thread Rich
Indeed those do seem out of date, however they are mentioned here http://dev.twitter.com/pages/auth On Dec 8, 8:49 pm, Tim Bull wrote: > Dave-tweinds, > > It is mentioned in passing and buried in some documents which discuss > the full flow, but if you're relying on Twitter's own API > documenta

[twitter-dev] Twitter apps - cookies & sessions - SAFE?

2010-12-09 Thread KevinP
Hi there, I'm developing my first twitter web application and i need some help or rather some advice. After a user allows my app to access their account, they are redirected to my website. From there i generate a unique 25char long key. This key is stored together with the access tokens and other d

[twitter-dev] Stream API need help

2010-12-09 Thread planb
Hey Guys, I'm trying to stream in any tweets related to my keyword but for some reason they won't go into the my_sql database any thoughts? The other day it suddenly started workingnow its not working againi dont get it. $fp = fopen("http://"; . $username . ":" . $password . "@str

[twitter-dev] twitter client lisp library

2010-12-09 Thread mohegskunkworks
Hi, Maybe this is not the appropriate list, but I'm finishing up a lisp twitter library. How does this get added to this page : http://dev.twitter.com/pages/libraries You can find the source code here : https://github.com/fons/cl-twitter Thanks.. -- Twitter developer documentation and resource

Re: [twitter-dev] Stream API need help

2010-12-09 Thread Adam Green
This is not the right way to access the streaming API. John K. is going to yell at you. :) You should be making a continuous connection to the streaming API and keeping it open. This is generally done with a background PHP process that is launched with a command like: nohup php [your PHP script] &

Re: [twitter-dev] followers/ids result missing next_cursor and previous_cursor

2010-12-09 Thread Taylor Singletary
This could definitely be made more obvious. To instruct the API to go into "cursoring" mode, append cursor=-1 to your query parameters on the initial request. GET http://api.twitter.com/1/followers/ids.xml?user_id=158414847&cursor=-1 The response will then contain the cursor fields you're lookin

[twitter-dev] Re: Finding Tweets about Places

2010-12-09 Thread Tim Hastings
Are there any plans to add support for Foursquare's Venue ID? -- 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

[twitter-dev] get latest tweet from public api?

2010-12-09 Thread joelbrave
Is there a way to get only the latest tweet from a single user via the public API? Everything I've come across returns a pile of tweets, and I only want to get the latest. Is there a limit control for the public API where I can specify how many tweets I want to retrieve, going back in time starting

Re: [twitter-dev] get latest tweet from public api?

2010-12-09 Thread Tom van der Woerdt
http://twitter.com/statuses/user_timeline/tvdw.rss?count=1 If necessary, you can replace .rss with .json, .rss and/or .atom. Tom On 12/9/10 4:36 PM, joelbrave wrote: Is there a way to get only the latest tweet from a single user via the public API? Everything I've come across returns a pile o

Re: [twitter-dev] followers/ids result missing next_cursor and previous_cursor

2010-12-09 Thread Robbie Coleman
I should have mentioned that my requests included the cursor=-1 in them already. The twurl links I provided may not work for anyone but me (just learned of this limitation of twurl), but if you check the url, you'll see the cursor param included and the value associated to it to be -1. I also fou

Re: [twitter-dev] followers/ids result missing next_cursor and previous_cursor

2010-12-09 Thread Taylor Singletary
The Twurl console on dev.twitter.com is more dream than reality. Have you tested this in an environment that is not our developer console? The console version of Twurl is also very useful: http://github.com/marcel/twurl Apigee's console is the best web-based one available: http://app.apigee.com/c

Re: [twitter-dev] followers/ids result missing next_cursor and previous_cursor

2010-12-09 Thread Robbie Coleman
Yes I have. I only used twurl as an attempt to share the example, but my tests were with twitter4j. I have the full source and viewed both the request and the response. Thank you for these alternative consoles. I will try them when I get to my office today. Do either of them support signing the re

[twitter-dev] any api to get only tweets that are not replies/mentions

2010-12-09 Thread deostroll
hi, I was just wondering if there is any api that would give us only tweets by the user which are not the user's responses to other people's tweets to that person. Meaning, I am just looking for the user's tweets which are not part of any conversation --deostroll -- Twitter developer documentat

[twitter-dev] get 3 months tweets?

2010-12-09 Thread deostroll
hi, I want to know if there is a way to get the 3 months tweets of a user directly from twitter. I am aware that we can paginate and do this, but this would involve generating more number of http requests which would affect the rate-limiting quota. Surely there must be some strategy in place for

Re: [twitter-dev] followers/ids result missing next_cursor and previous_cursor

2010-12-09 Thread Robbie Coleman
@Taylor: That web-based tool is amazing! Thank you! I made the call from apigee using the credentials I used in my unit test last night (that failed to return cursor fields) and right now it is successfully receiving these cursor fields. I just got into the office (late night hacking) and will fi

Re: [twitter-dev] Re: Finding Tweets about Places

2010-12-09 Thread elizabeth talbot
no On Thu, Dec 9, 2010 at 10:00, Tim Hastings wrote: > Are there any plans to add support for Foursquare's Venue ID? > > -- > Twitter developer documentation and resources: http://dev.twitter.com/doc > API updates via Twitter: http://twitter.com/twitterapi > Issues/Enhancements Tracker: > http:/

Re: [twitter-dev] followers/ids result missing next_cursor and previous_cursor

2010-12-09 Thread Robbie Coleman
Problem (mostly) found! The fact that the issues lies within my incorrect usage of the client library I am using (twitter4j) and that my test case for using something besides twitter4j was based on our broken twurl client AND that both of these clients returned similar results missing the cursor

Re: [twitter-dev] any api to get only tweets that are not replies/mentions

2010-12-09 Thread Matt Harris
You can do this by including the parameter exclude_replies=1 when requesting a timeline. When you do this any Tweets which begin with an @name will be removed from the response. Hope that helps, @themattharris Developer Advocate, Twitter http://twitter.com/themattharris On Thu, Dec 9, 2010 at 11

Re: [twitter-dev] get 3 months tweets?

2010-12-09 Thread Matt Harris
The API can only return the last 3,200 Tweets for a user timeline and 800 for each of the home and mentions timelines. We'd like to offer access to more than this but our infrastructure doesn't allow for it. The Tweets are safe and have not been deleted or lost, they are just not available through

Re: [twitter-dev] Re: Finding Tweets about Places

2010-12-09 Thread Matt Harris
Hi Tim, We hope to add more geo data partners in the future but for now Foursquare is not included. Best @themattharris Developer Advocate, Twitter http://twitter.com/themattharris On Thu, Dec 9, 2010 at 7:00 AM, Tim Hastings wrote: > Are there any plans to add support for Foursquare's Venue

[twitter-dev] Does @Anywhere shorten URLs automatically?

2010-12-09 Thread Jim Spath
I've successfully setup @anywhere on my development site, but noticed it didn't automatically shorten the URLs using t.co like the Tweet Button does. Is there an option to enable this, or is it simply not offered as part of @Anywhere? Thanks! Jim -- Twitter developer documentation and resources

[twitter-dev] Re: any api to get only tweets that are not replies/mentions

2010-12-09 Thread deostroll
Hi, is it possible to do this via the search api; exclude replies/mentions while fetching results? --deostroll On Dec 10, 2:36 am, Matt Harris wrote: > You can do this by including the parameter exclude_replies=1 when requesting > a timeline. When you do this any Tweets which begin with an @nam

Re: [twitter-dev] Re: xAuth Request gives Error from samsung tv maple browser

2010-12-09 Thread umamahesh G.
HI Tom Thank you very much for Your kind Support.Still i could not able to get Response from Twitter from firefox and samsung TV app. But it is working in Safari.Here i am sending the clean code as an attachment please help me out where the hurdle exist. If you make it work in firefox surely work