[twitter-dev] Getting number of retweets

2010-07-05 Thread Lumpizaver
Hey! I am using c# for streaming tweets into my application. What I know about a tweet is it's author and text. I would like to get the total count of retweets on the imported tweet.

[twitter-dev] Re: @replies missing

2010-07-05 Thread Naveen Ayyagari
John it seems to me that people still may be having some issues with @replies right now long after 2300UTC.. I have not specifically seen any reports for us, but its late and I assume they will start up again in the morning if there are still issues. http://search.twitter.com/search?q=replies

[twitter-dev] Re: Widget to follow a particular user

2010-07-05 Thread LansyJ
Thanks Furkan. Just what I wanted! On Jul 3, 8:21 pm, Furkan Kuru furkank...@gmail.com wrote: Have a look at twitter anywhere: http://dev.twitter.com/anywhere/begin On Sat, Jul 3, 2010 at 1:26 AM, LansyJ lans...@gmail.com wrote: hi guys, I am promoting a site (www.cashpax.com). Today,

[twitter-dev] Invitations API

2010-07-05 Thread Johnny Honestly
Dear Please Sir to Your Kindness, Please consider the following: Open the find friends function to developers. I.e. Developer can submit a bulk of email addresses of user to Twitter for purpose of friend matching. And while you're at it: Allow developers to subscribe new users to your service,

[twitter-dev] unable to get the previous trend...

2010-07-05 Thread awahid
I am trying to fetch the weekly trends of previous dates. making a curl call http://search.twitter.com/trends/daily.json?date=2010-06-03 http://search.twitter.com/trends/weekly.json?date=2010-06-03 and empty in trend result ... Am I not able to fetch the previous trends??? Is there any

[twitter-dev] Re: @replies missing

2010-07-05 Thread Brad
Hey John - Thanks for the update, though it appears that it's not only a matter of latency. Some users are reporting that their replies are missing entirely. On Jul 4, 3:25 pm, John Kalucki j...@twitter.com wrote: The mentions timelines were updating with additional latency, perhaps a few

[twitter-dev] Pulling data from Twitter

2010-07-05 Thread lauthiamkok
Hi, I am new to Twitter API and only know that we can pull someone's Twitter feed from Twitter through RSS feed on that person's Twitter page/ profile. But, how can I pull more information of that person's Twitter page? For instance, 1. His/ Her followers. 2. Total of his/ her retweet items.

[twitter-dev] How can I check xauth request approved?

2010-07-05 Thread Nara
I sent email to request xauth access, and I got reply that my application now has the ability to use xAuth. but I'm having problem that [401 error - Failed to validate oauth signature and token] when requesting access token. So I want to check that my application is supporting xauth or not,

Re: [twitter-dev] Previous_Cursor Not Working

2010-07-05 Thread Thomas Billenstein
I had the same problem with next_cursor. next_cursor_str worked fine. Thomas 2010/7/5 Ron rbther...@gmail.com: Anyone else seeing a problem on Followers or Friends with Previous_Cursor not working (returning a blank response)?

[twitter-dev] Need example about get info twittercounter api

2010-07-05 Thread doremon
Hi everybody, - Now i want to make site get some info like twittercounter.com, But i can not get full information like twittercounter . So i have some questions. 1.The information at twittercounter.com only twittercounter can get from twitter ? ex : 866 Followers 616 Following 111 Tweets

Re: [twitter-dev] Farsi Twitter App

2010-07-05 Thread Jean-Charles Campagne
Hello Lucas, We do not provide, yet, exactly what you are looking for, but for now we might help you on the language filtering part. We provide an API for language and location filtering for micro-messages (Tweets and Facebook messages, etc.). You'll find more info on the API website:

[twitter-dev] Need example about get info twittercounter api

2010-07-05 Thread doremon
- Now i want to make site get some info like twittercounter.com, But i can not get full information like twittercounter . So i have some questions. 1.The information at twittercounter.com only twittercounter can get from twitter ? ex : 866 Followers 616 Following 111 Tweets #107,543

Re: [twitter-dev] Previous_Cursor Not Working

2010-07-05 Thread CWorster
Same problem here. I'm using previous_cursor_str and next_cursor_str. previous_cursor_str stopped working. next_cursor_str works as expected. 2010/7/5 Ron rbther...@gmail.com: Anyone else seeing a problem on Followers or Friends with Previous_Cursor not working (returning a blank response)?

[twitter-dev] Re: Previous_Cursor Not Working

2010-07-05 Thread Ron
This is still not working. Previous_Cursor_Str for current page less than 4 returns an empty object on either Followers or Friends API calls. Nothing showing up on Twitter Status about this. Does anyone at Twitter care to comment? On Jul 5, 6:38 am, CWorster cwors...@schlimmer.com wrote: Same

[twitter-dev] Re: Home_timeline and retweets

2010-07-05 Thread luisg
Can somebody help? Maybe I'm doing something wrong. For example, if account A has Account B as follower and vice-versa, and if account A retweets tweet XPTO made by account B, shouldn't the tweet XPTO appear with retweet_status property if we request the home_timeline? Please help, Luis On

Re: [twitter-dev] Re: Home_timeline and retweets

2010-07-05 Thread Thomas Woolway
I don't think that you're doing anything wrong - it's just a quirk of the API - you don't get any info in your home timeline on stuff you retweeted. I think this is because of the condition that you should never see a retweet if you would have seen it already in your timeline. This stops you from

[twitter-dev] oauth_sign - simple C code to generate an OAuth signature

2010-07-05 Thread Jef Poskanzer
Last week I finished converting my homebrew Twitter apps to OAuth. There were four parts to this effort, one of which includes a significant new piece of OAuth software. I'll talk about each part in turn. Part 0: Deciding to do it. My apps are command-line based and call Twitter using my

[twitter-dev] to create Api on my website

2010-07-05 Thread vivek
how can i create a Api on my website.

[twitter-dev] Re: @replies missing

2010-07-05 Thread jamescrowley
Hi guys - my replies are missing too on two of my accounts (@jamescrowley and @thetecheye). Got one reply 16h ago, the next one 10 days ago, and the one after that 141 days ago. They appear in the search results though :) http://search.twitter.com/search?q=%40jamescrowley What's up? On Jul 5,

[twitter-dev] Can't get geotagging to work.

2010-07-05 Thread meto
Hi guys, I'm having problems with submitting my geo-location with a status. I'm using the twitteroauth (PHP, by abraham on github) which works pretty fine. My call looks like this $parameters = array( 'status'= 'This is a call', 'lat'

[twitter-dev] Re: oauth_sign - simple C code to generate an OAuth signature

2010-07-05 Thread Ross Burton
On Jul 5, 5:48 pm, Jef Poskanzer j...@mail.acme.com wrote: Part 0: Deciding to do it.  My apps are command-line based and call Twitter using my equivalents of curl, called http_get and http_post. These are simple command-line programs that make an HTTP call.  What I needed was a simple

Re: [twitter-dev] oauth_sign - simple C code to generate an OAuth signature

2010-07-05 Thread Decklin Foster
Excerpts from Jef Poskanzer's message of Mon Jul 05 12:48:27 -0400 2010: I needed was a simple command-line program to make an OAuth-signed HTTP call. Did that already exist? Sort of - there was Marcel Molina's twurl: http://github.com/marcel/twurl Only problem is that it's written in Ruby,

[twitter-dev] Failed to validate oauth signature and token using ColdFusion8

2010-07-05 Thread Carlos Villarreal Mora
Hello I've been trying to solve this since Friday to no avail. I've searched and used tips from a bunch of other discussions here but I still haven't gotten it right. I'm using ColdFusion 8 to generate my OAuth signature. These are the tweaks I've done from tips in this discussion list: 1) For

[twitter-dev] Geo XML Format Query

2010-07-05 Thread Steve
Hi all, I've done a search here for this info, and looked through the docs, but I can't find what I'm looking for documented anywhere. What I'm after is a full sample of what data might appear in the geo/ , coordinates/ and place/ tags, when they're populated. At present I've only seen some

[twitter-dev] Re: oauth_sign - simple C code to generate an OAuth signature

2010-07-05 Thread Jef Poskanzer
On Jul 5, 10:52 am, Decklin Foster deck...@red-bean.com wrote: There is also Curlicue, which I've written: http://github.com/decklin/curlicue Ooo a sh script! Very nice.

Re: [twitter-dev] Re: oauth_sign - simple C code to generate an OAuth signature

2010-07-05 Thread Cameron Kaiser
There is also Curlicue, which I've written: http://github.com/decklin/curlicue Ooo a sh script! Very nice. Hey, that *is* pretty slick. I like the way it handles openssl. -- personal: http://www.cameronkaiser.com/ -- Cameron Kaiser * Floodgap

[twitter-dev] Streaming API and Oauth

2010-07-05 Thread Zhami
The Oauth Overview page http://dev.twitter.com/pages/auth_overview has sections for three APIs: REST, Search, and Streaming. The bottom of the page displays a ribbon stating that The @twitterapi team will be shutting of basic authentication for the Twitter API. Does this mean all of the Twitter

Re: [twitter-dev] Streaming API and Oauth

2010-07-05 Thread Pascal Jürgens
Quoting John Kalucki: We haven't announced our plans for streaming and oAuth, beyond stating that User Streams will only be on oAuth. Right now, basic auth and oAuth both work on streaming, and that won't change when basic for REST turns off. Since there's no set shutdown date yet for

[twitter-dev] Invalid timescale error on location trends

2010-07-05 Thread Heidi Hysell
I'm trying to use the trends/location/woeid functionality (http:// dev.twitter.com/doc/get/trends/location/:woeid) and keep on getting the following error: code: 31 message: Invalid timescale: must be 'current', 'hourly', or 'daily' The documentation doesn't specify anything about sending in a

[twitter-dev] Re: Home_timeline and retweets

2010-07-05 Thread luisg
So, instead of 1, now I have to do 2 call (one for the home_timeline and another for the retweets_of_me). I started to understand the 'Tiwtter is over capacity' error! ...ridiculous... On Jul 5, 6:17 pm, Thomas Woolway priv...@tswoolway.co.uk wrote: I don't think that you're doing anything

[twitter-dev] Re: Need example about get info twittercounter api

2010-07-05 Thread luisg
Not sure if you can get all that info with the Twitter API. But for followers and tweets, you can get them using user/show: ... followers_count1031/followers_count ... statuses_count3390/statuses_count ... check here: http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses%C2%A0friends

[twitter-dev] @mention messages appear in the timeline

2010-07-05 Thread show3r
hi i want you to implement mention messages to appear in the timeline, wont you think that would give the idea of twitter a boost?

[twitter-dev] Re: Geo XML Format Query

2010-07-05 Thread Steve
Forgot to mention that I mean in the context of any of the timelines, where tweets are returned in XML form On Jul 5, 6:56 pm, Steve 25tol...@gmail.com wrote: Hi all, I've done a search here for this info, and looked through the docs, but I can't find what I'm looking for documented anywhere.

Re: [twitter-dev] Geo XML Format Query

2010-07-05 Thread Raffi Krikorian
hi steve. there are two different ways to geotag a tweet. there is geotagging with an exact latitude and longitude, and then there is geotagging with a place. when you geotag with an exact latitude and longitude, the coordinates (and geo) attributes will be filled. additionally, if twitter has

Re: [twitter-dev] @mention messages appear in the timeline

2010-07-05 Thread Raffi Krikorian
i'm sorry, i'm not sure what you're asking. the mentions timeline has mentions information in it: http://dev.twitter.com/doc/get/statuses/mentions On Mon, Jul 5, 2010 at 12:12 PM, show3r sho...@gmail.com wrote: hi i want you to implement mention messages to appear in the timeline, wont you

Re: [twitter-dev] Re: Home_timeline and retweets

2010-07-05 Thread Raffi Krikorian
i don't think ridiculous is the right term :P we're constantly evolving the API to match up with what our developers are trying to do! so - that being said - what are you looking for? are you trying to figure out which tweets on the home timeline has the authenticating user retweeted? On Mon,

Re: [twitter-dev] Invalid timescale error on location trends

2010-07-05 Thread Raffi Krikorian
hey heidi. can you provide more information? i just tried the following few things: http://api.twitter.com/1/trends/2487956.xml (trends in SF) http://api.twitter.com/1/trends/2487956/current.xml (same as above) http://api.twitter.com/1/trends/2487956/hourly.xml (hourly version of trends from

Re: [twitter-dev] How can I check xauth request approved?

2010-07-05 Thread Raffi Krikorian
it takes a few days for us to process xauth requests - you should hear back from us soon! On Sun, Jul 4, 2010 at 7:57 PM, Nara ijwc...@gmail.com wrote: I sent email to request xauth access, and I got reply that my application now has the ability to use xAuth. but I'm having problem that

Re: [twitter-dev] Pulling data from Twitter

2010-07-05 Thread Raffi Krikorian
hi lau. check out http://dev.twitter.com/doc - the methods that you need to call are all documented there. On Sun, Jul 4, 2010 at 2:12 PM, lauthiamkok lau.thiam...@googlemail.comwrote: Hi, I am new to Twitter API and only know that we can pull someone's Twitter feed from Twitter through RSS

[twitter-dev] Friend and Follower count - since timestamp

2010-07-05 Thread nischalshetty
My app http://justunfollow.com extensively uses the friends/ids and followers/ids API. Since twitter users have a lot of followers and friends and this API is paginated, I find it repetitive to use it. A since param that sends me all new friend and follower ids of a user along with the deleted