Re: [twitter-dev] API for TOP Tweets

2010-12-03 Thread Tim Haines
Hey Rajat, Those are tweets that have been faved by @toptweets. You can retrieve favs from that user. You can also get the favs from @toptweets_de and the other languages if you want to. Tim. On Fri, Dec 3, 2010 at 4:06 PM, rajat rajat.triu...@gmail.com wrote: I wonder which API to use to

[twitter-dev] Re: Enabling Geotagging to user tweet

2010-12-03 Thread Francis Chong
Unfortunately the https://twitter.com/account/geo can never open the geo setting page on iPhone iOS4.2. It work on desktop browser. Tried Twitter for iPhone app, it actually enable geo tagging though API, wonder if this api is open to public ... On Nov 19, 6:23 am, Abraham Williams

[twitter-dev] Hi

2010-12-03 Thread Rajiv Kaushal
Hi, Twitter is not responding for api request I am sending from nexpeeps.com? Would you please tell me why it is so? Thanks and Regards, Rajiv -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi

[twitter-dev] method GET statuses/show/:id can not find all tweets

2010-12-03 Thread jaojao
Hi everybody, I use API method GET statuses/show/:id to retrieve information of a tweet by giving its id. http://dev.twitter.com/doc/get/statuses/show/:id But, it can not find all tweets. For example, I collected all tweets (id and content) posted for my seminar in January 2010. When I retrieve

[twitter-dev] Re: method GET statuses/show/:id can not find all tweets

2010-12-03 Thread jaojao
b.t.w. the responded xml file is like: hash errorNot found/error request/1/statuses/show.xml?id=8325876884/request /hash -- Twitter developer documentation and resources: http://dev.twitter.com/doc API updates via Twitter: http://twitter.com/twitterapi Issues/Enhancements Tracker:

Re: [twitter-dev] Streaming API firehose visibility

2010-12-03 Thread John Kalucki
Yes, where firehose is the stream of all public statuses, with some low-quality accounts removed. On Wed, Dec 1, 2010 at 3:52 PM, dburkes dbur...@gmail.com wrote: If I am using the statuses/filter streaming API, with a track= query that is not overly broad, and my client never receives any

[twitter-dev] Re: Can't connect with @anywhere.

2010-12-03 Thread @Danny_Fr
I should proof read sometimes. Here is a human readable version of my previous post: I am trying to develop a little something for myself, using the @anywhere framework. Everything was kind of working until yesterday. Now, I can't connect my app to my account via the Connect with Twitter button

[twitter-dev] Re: API for TOP Tweets

2010-12-03 Thread rajat
Hi Tim, Thanks a tons i will do that! :) regards, Rajat On Dec 3, 3:49 pm, Tim Haines tmhai...@gmail.com wrote: Hey Rajat, Those are tweets that have been faved by @toptweets.  You can retrieve favs from that user.  You can also get the favs from @toptweets_de and the other languages if

[twitter-dev] Re: Getting tweets from users following a particular user

2010-12-03 Thread Sarah
Have you considered signing up to the DataSift Alpha program? It can also filter content and provide you just with the filtered content that you curate rather than you needing to have access yourself to the full datastream you just get what you need. It's in Alpha at the moment but you may just

[twitter-dev] Re: Twitter rate limiting restricting my implementation

2010-12-03 Thread computerzworld
Hi, I have changed my logic to fetch 100 users at a time using statuses/friends call. And passing cursor parameter everytime after one call recursively. But this process is becoming very slow and it is taking very long time to fetch the records getting terminated suddenly. What you

[twitter-dev] Single Sign On Using Twitter4j

2010-12-03 Thread Ganesh Sonawane
Hi All , I have developed Single Sign on using Twitter4j Api JAVA ( OAuth 2.0 framework ) it's working fine. But I have one another use case that I can't implement yet , please read following which i need same. Consider Twitter User has already linked his account with my Sample

Re: [twitter-dev] Re: Can't connect with @anywhere.

2010-12-03 Thread Matt Harris
Hi Danny, Can you post your @anywhere code snippet so we can take a look. Best, @themattharris On Dec 3, 2010, at 2:01, @Danny_Fr danny.fr.m...@gmail.com wrote: I should proof read sometimes. Here is a human readable version of my previous post: I am trying to develop a little something

[twitter-dev] Search links that have been used on Twitter (ASP Classic)

2010-12-03 Thread Mauricio Gutierrez Capel
Good evening friends, I've looked in several places and have not found the best way to show on my site (which is to shorten URLs) the links that users are Twittering, or Re-Tweeting. For example on the page that the user picks up the details of the link ( http://www.vaza.me/detalhes.asp) I would

[twitter-dev] Re: oAuth still working for everyone.?

2010-12-03 Thread Rich
I _think_ I've patched my oauth_verifier in my implementation, however Taylor it's going to take us a good two weeks to get it through Apple's approval process. Not to mention the Mac App Store where we can't submit updates until they launch it! Strange I know, so that one is in limbo right now.

[twitter-dev] Re: Snowflake: An update and some very important information

2010-12-03 Thread TCI
Help. I had been using BINARY(16) to store tweet id's in MYSQL. I can't find a good resource to tell me the new data type I should use: Reading the mysql documentation, I believe it should be unsigned bigint - but would binary(64) be a better option? I also read this comment against about BIGINT,

Re: [twitter-dev] Re: Snowflake: An update and some very important information

2010-12-03 Thread Tom van der Woerdt
Signed bigint is what Snowflake itself uses. Tom On 12/3/10 7:26 PM, TCI wrote: Help. I had been using BINARY(16) to store tweet id's in MYSQL. I can't find a good resource to tell me the new data type I should use: Reading the mysql documentation, I believe it should be unsigned bigint - but

[twitter-dev] Re: Snowflake, it's almost 9007199254740992 time.

2010-12-03 Thread Kevin Watters
Beware the natural order comparison code linked above. natcompare(10705970246197248, 625058521088) returns -1 incorrectly. See https://gist.github.com/727383 for an example. On Nov 23, 12:26 pm, Matt Harris thematthar...@twitter.com wrote: Hey everyone, You may remember a few weeks ago we

[twitter-dev] Moving from Basic to OAuth in original Streaming API (statuses/filter)

2010-12-03 Thread Mark Soper
After using streaming API (statuses/filter) for several months with basic auth, I'm trying to make the switch to OAuth, which I'm already using successfully against the Site Stream Beta via Tweepy (python). Using all the same process that works with Site Stream (except for few minor changes to

Re: [twitter-dev] Moving from Basic to OAuth in original Streaming API (statuses/filter)

2010-12-03 Thread Taylor Singletary
Hi Mark, While we work hard to make our OAuth implementation the same across resources, the implementation in our streaming API is in a different language and may still have some quirks in relation to our other end points. The best way we can help you is for you to show us the HTTP headers you

Re: [twitter-dev] Re: Snowflake, it's almost 9007199254740992 time.

2010-12-03 Thread Matt Harris
Thanks for pointing this out Kevin. I've passed this onto the engineers for review. Best @themattharris Developer Advocate, Twitter http://twitter.com/themattharris On Fri, Dec 3, 2010 at 11:10 AM, Kevin Watters kevinwatt...@gmail.comwrote: Beware the natural order comparison code linked

[twitter-dev] Trying to implement entities, and some indicies off

2010-12-03 Thread GadgetDon
I'm still learning the API, got my experimental site up and running using Abraham William's twitteroauth library. For some posts, though, the indicies are wrong, offset by a couple characters too high. For example, status 10716446405427200 has my highlighting the wrong characters - for amazon.com

Re: [twitter-dev] Trying to implement entities, and some indicies off

2010-12-03 Thread Matt Harris
Thanks for letting us know about this. I've passed the example onto the engineers who are going to look into it. So we can track the issue could you open a ticket on our issue tracker: http://code.google.com/p/twitter-api/issues/list Thanks @themattharris Developer Advocate, Twitter

Re: [twitter-dev] Trying to implement entities, and some indicies off

2010-12-03 Thread martinrd
On Fri, Dec 03, 2010 at 03:43:15PM -0800, GadgetDon wrote: I'm still learning the API, got my experimental site up and running using Abraham William's twitteroauth library. For some posts, though, the indicies are wrong, offset by a couple characters too high. For example, status

[twitter-dev] XML/HTML entities in Twitter search API's JSON?

2010-12-03 Thread Jacob
I'm trying to figure out how to properly process Tweet data from the search API. I'm retrieving data in the JSON format, and each Tweet has a text property. I'd assumed we would treat the content as text. However, I'm seeing multiple instances of entities such as quot; and amp; in the JSON. So

[twitter-dev] Re: Trying to implement entities, and some indicies off

2010-12-03 Thread GadgetDon
Yes! Thank you! mb_substr (once internal encoding set) solved it! On Dec 3, 7:00 pm, marti...@gmail.com wrote: On Fri, Dec 03, 2010 at 03:43:15PM -0800, GadgetDon wrote: I'm still learning the API, got my experimental site up and running using Abraham William's twitteroauth library. For

[twitter-dev] Re: Trying to implement entities, and some indicies off

2010-12-03 Thread GadgetDon
(So I won't be reporting it as a bug, looks like it's all working as designed) -- 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

[twitter-dev] Re: Single Sign On Using Twitter4j

2010-12-03 Thread nischalshetty
Users(even though they have authenticated your app through twitter previously) would still need to authorize themselves using twitter in order for you to verify them. You won't have a way of knowing whether they are logged in to twitter. The only way for you to verify is the oAuth way. -N On Dec

Re: [twitter-dev] hot to get all friend list

2010-12-03 Thread Abraham Williams
What do you mean by populate friend? It looks like your code should mostly work. One issue is the while loop will never end because next_cursor returns 0 when there are no more results which is greater then -1. Abraham - Abraham Williams | Hacker Advocate | abrah.am @abraham

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

2010-12-03 Thread mahesh
HI Team, Here i have been getting the following problem. I can able to post the message to twitter using xAuth Protocol in safari but i can't from firefox ,samsung tv browser Maple and IE. I am using javascript xmlhttprequest and sha1 for signature. Is twitter send response when we request