[twitter-dev] Re: 403 on statuses longer than 140 characters

2010-03-20 Thread Andy Freeman
I don't suppose that the API documentation will be updated and made complete On Mar 19, 9:52 am, Mark McBride mmcbr...@twitter.com wrote: Abraham is correct.  We only truncate text in the case of SMS tweets.  We won't chop text off of tweets when posted via the API, however we will shorten

[twitter-dev] Geolocation revisited

2010-03-20 Thread Ken
When geolocation was first introduced we launched an app that was a very simple mashup of Google maps and Twitter, enabling users to attach a location of their choosing - not necessarily their actual location - to a tweet. The much-discussed privacy concerns of geolocation were not relevant to

Re: [twitter-dev] Re: Most popular tweets in the search API

2010-03-20 Thread Nigel Legg
Agreed - default sould be recentness, popularity - however it is defined - and we could go into a long sidetrack on that which has nothing to do with the api, apart from to just say that different people will have different ideas of how to take the data that comes with a tweet and use ti to

[twitter-dev] streaming api

2010-03-20 Thread rizwan khann
Hi i run this code but it just give me 100 status whose track twitter word but it not work as a stream...and not continue update for real time. plz tell me which method use to continue stream i m using TweetSharp Preview 24 API var twitter = FluentTwitter.CreateRequest()

[twitter-dev] Re: Introduce yourself!

2010-03-20 Thread Craig Hughes
Hello, I am Craig Hughes, a Graphic Designer and Web Developer based in Wales (UK). I speak fluent Photoshop, Fireworks and Illustrator and build my web projects using PHP, jQuery, Javascript and a sprinkle of Spry for good measure. The Twitter platform was the first API I worked with to

[twitter-dev] Re: Twitter Search: The page you were looking for doesn't exist.

2010-03-20 Thread Chung Han Lau
thank you. this is the search string i'm using: http://search.twitter.com/search.json?q=from:gp04lchrpp=5000since_id=0callback=?rpp=20 i went through the API and noticed it states that results are limited to 7 days. is there a way to get results earlier than the 7 days? On Mar 16, 11:44 pm, Mark

Re: [twitter-dev] Re: Twitter Search: The page you were looking for doesn't exist.

2010-03-20 Thread John Kalucki
The current search corpus duration is limited to about 7 to 14 days. The search team is working on increasing the duration. -John Kalucki http://twitter.com/jkalucki Infrastructure, Twitter Inc. On Sat, Mar 20, 2010 at 6:22 AM, Chung Han Lau arbuquerq...@gmail.comwrote: thank you. this is the

Re: [twitter-dev] streaming api

2010-03-20 Thread John Kalucki
Perhaps the 10.Seconds() and Take(100) functions are limiting your output? It seems that this framework is perhaps not streaming, but assuming a finite response size? I'd ask on the TweetSharp dev list. -John Kalucki http://twitter.com/jkalucki Infrastructure, Twitter Inc. On Sat, Mar 20, 2010

[twitter-dev] Way to use JSON offline?

2010-03-20 Thread Cassidy
Anyone know a way to just use a local JSON file, taken from a twitter API call, to test an app with in PHP? Right now I'm testing with actual calls to the API, but I don't want to have to keep tracking how many calls I've made within the hour. Thanks! To unsubscribe from this group, send email

Re: [twitter-dev] Way to use JSON offline?

2010-03-20 Thread Andrew Badera
Read up on the concept of mocking. ∞ Andy Badera ∞ +1 518-641-1280 Google Voice ∞ This email is: [ ] bloggable [x] ask first [ ] private ∞ Google me: http://www.google.com/search?q=andrew%20badera On Sat, Mar 20, 2010 at 1:20 PM, Cassidy cassc...@gmail.com wrote: Anyone know a way to just use

[twitter-dev] Re: Way to use JSON offline?

2010-03-20 Thread jmathai
More specifically, try phpunit's mock object framework. http://www.phpunit.de/manual/3.0/en/mock-objects.html On Mar 20, 11:08 am, Andrew Badera and...@badera.us wrote: Read up on the concept of mocking. ∞ Andy Badera ∞ +1 518-641-1280 Google Voice ∞ This email is: [ ] bloggable [x] ask

[twitter-dev] Skip the Return Values page after sending a tweet?

2010-03-20 Thread T
Forgive me if this isn't the right place to post, but I can't seem to find any answers to my question and i'm still pretty new to this. After integrating Twitter into my website, whenever i publish a tweet (from my website) i get sent to a page with return values. The tweet gets sent fine, but I

[twitter-dev] Re: Skip the Return Values page after sending a tweet?

2010-03-20 Thread Jaanus
Sounds like you are just redirecting your users to the Twitter API URL in their browser, and they are seeing the API response. This is not right. You should use some Twitter API library to send the API request and receive the response within your application, and then display some feedback to your

Re: [twitter-dev] Re: Send Cyrillic character (OAuth)

2010-03-20 Thread Patrick Kennedy
I'm new to Rails, and I am in process of studying this oauth example. Since there is no index file entry point at /public, where is the entry point of your oauth-dancer app? This is a newbie question of Rails, but it looks like a fun app for the oauth dancing purposes, and I wanted to follow the