Re: [twitter-dev] Seeking some assistance with my twitter account

2009-12-08 Thread Michael Steuer

It sounds like the followers/following ratio constraint...



On Dec 8, 2009, at 9:49 PM, Mark McBride  wrote:


What limit does it tell you you've hit?  The API request/hr limit?

On Tue, Dec 8, 2009 at 9:46 PM, steve8004  
 wrote:

Hello:

I use to third party twitter apps

1. Seemic for Windows
2. Tweetdeck

Both are running throughout the day while I work on other
applications. However, when trying to follow someone new and add them
to my follower list, it tells me I have hit my limit.

Is there an automated way to send a message to folks not following  
you

and give them a chance to do so prior to un-following them?

Many thanks,
Steve





--
  ---Mark

http://twitter.com/mccv


Re: [twitter-dev] Seeking some assistance with my twitter account

2009-12-08 Thread Mark McBride
What limit does it tell you you've hit?  The API request/hr limit?

On Tue, Dec 8, 2009 at 9:46 PM, steve8004  wrote:
> Hello:
>
> I use to third party twitter apps
>
> 1. Seemic for Windows
> 2. Tweetdeck
>
> Both are running throughout the day while I work on other
> applications. However, when trying to follow someone new and add them
> to my follower list, it tells me I have hit my limit.
>
> Is there an automated way to send a message to folks not following you
> and give them a chance to do so prior to un-following them?
>
> Many thanks,
> Steve
>



-- 
   ---Mark

http://twitter.com/mccv


[twitter-dev] Seeking some assistance with my twitter account

2009-12-08 Thread steve8004
Hello:

I use to third party twitter apps

1. Seemic for Windows
2. Tweetdeck

Both are running throughout the day while I work on other
applications. However, when trying to follow someone new and add them
to my follower list, it tells me I have hit my limit.

Is there an automated way to send a message to folks not following you
and give them a chance to do so prior to un-following them?

Many thanks,
Steve


Re: [twitter-dev] Re: statuses/friends issue?

2009-12-08 Thread Raffi Krikorian
> @twitter does deprecating also mean it stops working? :-)

yes.  sorry.  for us, it does.

-- 
Raffi Krikorian
Twitter Platform Team
http://twitter.com/raffi


[twitter-dev] Re: statuses/friends issue?

2009-12-08 Thread hansamann
Thanx, I think the issue exists because I am using the page parameter
(via twitter4j).

@twitter does deprecating also mean it stops working? :-)

Cheers
Sven

On Dec 8, 1:06 pm, Randy  wrote:
> Are you using "page" parameter? If so, it was recently deprecated, so
> that would explain what you are seeing... the first page over and over
> again. Check the API documentation to see how to use the "cursor"
> parameter.
>
> On Dec 6, 8:25 pm, hansamann  wrote:
>
> > Hi all,
>
> > my code is calling api method statuses/friends with an increasing
> > paging to get all friends information. Since a couple of hours it
> > seems it never reaches a page with no friends or less than n friends
> > so my code stops the recursion.
>
> > Anyone similar problems?


Re: [twitter-dev] Dedicated IP Whitelist

2009-12-08 Thread Hedley Robertson
On Tue, Dec 8, 2009 at 11:13 AM, Jesse Bunch  wrote:

> Hi,
>
> I am on a shared web hosting space, but my domain has a dedicated IP
> on the server. Am I correct in saying that the twitter API sees the
> dedicated IP address instead of the shared IP address that the server
> has?


It sees whatever IP address the server is making the outgoing http request
with.  You should be able to test this from the command line, on the server,
if you have access:

curl http://www.whatismyip.com/


[twitter-dev] Re: Track streaming : how to match tweets?

2009-12-08 Thread Julien
Thanks Mark, but as I said, we need to fetch more complex feeds to. So
we'll use the OR with the simple query, and then query the search API
with the complex query to see if a given tweet matches what we need!

Julien

On Dec 8, 12:55 am, Mark McBride  wrote:
> Note that search API whitelisting is different from regular API
> whitelisting, and getting a 20k hour limit there is much more
> restrictive.
>
> I still haven't seen a case where you couldn't do the matching on your
> side.  As John says, with the streaming API right now you can only
> match simple terms, so the complex terms aren't a factor.  In fact the
> track you posted won't actually function as you intend with the
> streaming API.  You could track for tweets containing starbucks or
> free.  But currently that's it.  "starbucks AND free" is something
> you'd have to implement on your side.  Same with near.
>
>
>
>
>
> On Mon, Dec 7, 2009 at 3:45 PM,Julien wrote:
> > Hum... ok... sad, but I have an idea. Please tell me if this is
> > stupid.
>
> > So, for each tweet I receive, I know what searches it _may_ match.
> > Right?
> > So, with all these "candidates" query, what I can do is perform them
> > against the regular search API (as long as they're complex). If the
> > result from the polling includes them, then, I know that the searches
> > matches and I don't have to build anything on top of what you built.
>
> > Let's take an example :
> > -  If I have a search for "starbuck AND free near:94123"
> > - I track "starbuck" with the streaming API
> > - Whenever you guys send me a tweet for this track
> > -  I check internally all the queries that may match Starbucks
> > - I perform them on your API
> > - if the tweet you sent me is in the results, then I know this tweet
> > is valid,
> > - if not, I discard it.
>
> > My only concern here is the 20k/hour limit. I think this is still
> > doable, because
> > 1) we will only make queries to the search API when we receive
> > notifications
> > 2) we will only make queries to the search API for complex queries
> > (IE : AND, +, "" or near:
>
> > The pros :
> > - whener you guys change/add stuff to your search DSL, I don't have to
> > change anything on my side.
>
> > How does that sound?
>
> > Thanks John anyway for your great help!
>
> >Julien
>
> > On Dec 5, 3:32 pm, John Kalucki  wrote:
> >> This could only make sense if the Streaming API supported "search engine
> >> logic". Currently Streaming only supports keyword matching -- you have to
> >> post-process to add additional predicate operators beyond OR. You can
> >> reproduce the keyword match in a few lines of code, and the rest is
> >> (currently) all up to you anyway. Just remember that a given tweet could
> >> have triggered multiple predicates.
>
> >> Beyond being a low priority feature, rendering and delivering custom
> >> responses per user would be a performance risk. We currently can support a
> >> very large number of filter clients per server, and we want to preserve 
> >> this
> >> performance.
>
> >> -John Kaluckihttp://twitter.com/jkalucki
> >> Services, Twitter Inc.
>
> >> On Sat, Dec 5, 2009 at 3:18 AM,Julien wrote:
> >> > Thanks Dave,
>
> >> > I think I get it from your example... yet, in our case, we have
> >> > several thousands of keywords, and many many complex searches (with
> >> > filter:, "and", "or", :near ... an so on).
>
> >> > I keep thinking that instead of re-implementing on my side the search
> >> > engine logic that Twitter has, it would be simpler for them to also
> >> > send the macthing keywords. And even more elegant solution (yet
> >> > slightly more complex) would be to be able to parse parameters along
> >> > with the search I give, such as a unique search_id (that I can store
> >> > on my side) and then, instead of giving me the matched keywords/search
> >> > terms, they could just give me back that search_id. That would be
> >> > something like this :
>
> >> > Right now it is :
> >> > POST  http://stream.twitter.com/1/statuses/filter.json
> >> > track=paris,twitter+superfeedr,"julien
> >> > near:france"
>
> >> > It would be awesome if I could do :
> >> > POST  http://stream.twitter.com/1/statuses/filter.json
> >> > track={"paris":"my_search_1","twitter
> >> > +superfeedr":"my_search_2","juliennear:france":"my_search_3"}
>
> >> > And then, upon notifications, they would just pass me this search key
> >> > my_search_xx
>
> >> > I know and understand and implies a little bit of work for Twitter,
> >> > but it also removes the pain from each susbcriber to this streaming
> >> > API who has to re-implement again and again the "search engine" from
> >> > Twitter.
>
> >> > On Dec 4, 11:33 am, Dave Sherohman  wrote:
> >> > > On Thu, Dec 03, 2009 at 03:12:05PM -0800,Julienwrote:
> >> > > > Well, then I'd need some help with that...
>
> >> > > > Again, it's easy with single search keywords, but I haven't found a
> >> > > > solution for comb

[twitter-dev] Re: /favorites/create not versioned?

2009-12-08 Thread Michael Steuer
Never mind, the error was on my side... It's working now (and in case
you're wondering, the API is versioned and available at /1/favorites/
create

On Dec 8, 2:29 pm, Michael Steuer  wrote:
> When I POST tohttp://api.twitter.com/1/favorites/create/id.jsonI get a 404
> not found HTML page returned... Is the favorites/create API not versioned?
> The APIWiki still says:http://twitter.com/favorites/create/id.format, 
> nothttp://api.twitter.com/1/favorites/create/id.format
> Which is it???
>
> Thanks


[twitter-dev] /favorites/create not versioned?

2009-12-08 Thread Michael Steuer
When I POST to http://api.twitter.com/1/favorites/create/id.json I get a 404
not found HTML page returned... Is the favorites/create API not versioned?
The APIWiki still says: http://twitter.com/favorites/create/id.format, not
http://api.twitter.com/1/favorites/create/id.format
Which is it???

Thanks


Re: [twitter-dev] Re: How to detect 'Duplicate text' failure to send tweet

2009-12-08 Thread Raffi Krikorian
On Tue, Dec 8, 2009 at 10:43 AM, Stuart Smith
 wrote:
> Hi Raffi, I read on a blog somewhere that the recurring tweets (which
> I believe are the same as tweets with duplicate text) are going to be
> allowed i.e. the logic that rejects them will no longer be active.
> From what you say this is unlikely to happen.
>
> The reason I am so interested in this particular test is that I had
> been working on a twitter bot that allows you to play the orginal
> Colossal Cave text adventure and the user would use a lot of tweets
> with text like N, S, E, W etc to indicate a direction to move in (I
> was unaware of the duplicate text rejection). This would appear to be
> a complete and utter waste of time now - c'est la vie!!! I was going
> to put it live tonight but there is probably no point now.
>
> Cheers,
>
> On Dec 8, 6:28 pm, Raffi Krikorian  wrote:
>> > Does this 'duplicate text' have a time period for which it is invalid?
>> > i.e. how long do I have to wait before sending the same text?
>>
>> we currently reject tweets that have an exact string match to any
>> tweet sent "recently" (a few hours).
>>
>> > Is this what I have heard called 'recurring tweets'? If so, I read
>> > somewhere that they are going to be allowed to re-occur at some point
>> > soon - is this correct?
>>
>> i'm not sure what you mean by "allowed to re-occur at some point
>> soon".  i don't think we're going to change the logic around duplicate
>> tweets, but what we are working on is better error messaging when we
>> reject a tweet.
>>
>> --
>> Raffi Krikorian
>> Twitter Platform Teamhttp://twitter.com/raffi
>



-- 
Raffi Krikorian
Twitter Platform Team
http://twitter.com/raffi


Re: [twitter-dev] Send to certain user

2009-12-08 Thread Raffi Krikorian
this is not a question about the API...  however, try "d test123 test
alert" or something like that.

On Tue, Dec 8, 2009 at 12:42 PM, park2  wrote:
> We have an existing security product that when an alert happens we
> send a text and email. We now need to send to a Twitter account. What
> is the syntax to send 'test alert' to user 'test123' direct from the
> web address bar. I am trying to do this within php without installing
> curl.

-- 
Raffi Krikorian
Twitter Platform Team
http://twitter.com/raffi


Re: [twitter-dev] Re: Ping bot now available

2009-12-08 Thread Fabien Penso
On Tue, Dec 8, 2009 at 9:10 PM, dbasch  wrote:

> Just a thought in case you haven't considered it: be careful not to
> get caught in an infinite loop. There are bots that listen to keywords
> and reply to you. Someone may trigger a situation like that by making
> you echo such keywords, either maliciously or by accident.

Yeah, I limit the number of tweet I ping back per user in a period of
time (like 20 at most but i could lower the number), so such loop will
at least won't be too much of hurt.

I also remove URLs for not having spamers using the bot to spread
links. I'm thinking about replying to DMs too, can be useful.


[twitter-dev] Re: statuses/friends issue?

2009-12-08 Thread Randy
Are you using "page" parameter? If so, it was recently deprecated, so
that would explain what you are seeing... the first page over and over
again. Check the API documentation to see how to use the "cursor"
parameter.

On Dec 6, 8:25 pm, hansamann  wrote:
> Hi all,
>
> my code is calling api method statuses/friends with an increasing
> paging to get all friends information. Since a couple of hours it
> seems it never reaches a page with no friends or less than n friends
> so my code stops the recursion.
>
> Anyone similar problems?


[twitter-dev] Re: 404 Errors on friends and followers using cursors

2009-12-08 Thread Randy
I am seeing the same issue. In my case, the first four iterations work
(i.e. I retrieve 400 users), but the next call gives me a 404.


[twitter-dev] Re: How to detect 'Duplicate text' failure to send tweet

2009-12-08 Thread Stuart Smith
Hi Raffi, I read on a blog somewhere that the recurring tweets (which
I believe are the same as tweets with duplicate text) are going to be
allowed i.e. the logic that rejects them will no longer be active.
>From what you say this is unlikely to happen.

The reason I am so interested in this particular test is that I had
been working on a twitter bot that allows you to play the orginal
Colossal Cave text adventure and the user would use a lot of tweets
with text like N, S, E, W etc to indicate a direction to move in (I
was unaware of the duplicate text rejection). This would appear to be
a complete and utter waste of time now - c'est la vie!!! I was going
to put it live tonight but there is probably no point now.

Cheers,

On Dec 8, 6:28 pm, Raffi Krikorian  wrote:
> > Does this 'duplicate text' have a time period for which it is invalid?
> > i.e. how long do I have to wait before sending the same text?
>
> we currently reject tweets that have an exact string match to any
> tweet sent "recently" (a few hours).
>
> > Is this what I have heard called 'recurring tweets'? If so, I read
> > somewhere that they are going to be allowed to re-occur at some point
> > soon - is this correct?
>
> i'm not sure what you mean by "allowed to re-occur at some point
> soon".  i don't think we're going to change the logic around duplicate
> tweets, but what we are working on is better error messaging when we
> reject a tweet.
>
> --
> Raffi Krikorian
> Twitter Platform Teamhttp://twitter.com/raffi


[twitter-dev] Dedicated IP Whitelist

2009-12-08 Thread Jesse Bunch
Hi,

I am on a shared web hosting space, but my domain has a dedicated IP
on the server. Am I correct in saying that the twitter API sees the
dedicated IP address instead of the shared IP address that the server
has? I have been trying very hard to get a twitter API script running
but I get nothing but blank responses from twitter. This makes me
think that my IP has been blacklisted which makes sense if its seeing
the shared IP address that some spammer used to screw things up for
me. I have submitted my dedicated IP to twitter for whitelisting and
they did approve my request, but nothing has changed. Still a blank
response via cURL in PHP. This is a bit frustrating so any advice you
can give me would be much appreciated.

Jesse Bunch
Pixelated Technologies
www.PixelatedTech.com


[twitter-dev] Send to certain user

2009-12-08 Thread park2
We have an existing security product that when an alert happens we
send a text and email. We now need to send to a Twitter account. What
is the syntax to send 'test alert' to user 'test123' direct from the
web address bar. I am trying to do this within php without installing
curl.


Re: [twitter-dev] Looking for a simple Open Source Client - for Site Customer Support

2009-12-08 Thread John Meyer
People have made their own suggestions, so I'm not going to mirror 
them.  I would suggest, however, that customer to business communication 
probably would be better conducted on a forum other than twitter (people 
who are trying to describe problems they are having aren't at their most 
succinct and you usually need more information than 140 characters 
provides).  Now business-to-customer maybe, but it would probably be 
better in the form of tweeting the customer a shortlink.



On 12/5/2009 3:33 PM, coolrebel wrote:

Does anyone know of a v simple site-driven / site based twitter client
that could do the following?



allow site visitors / registered users to tweet us from their account
to our customer support account.

uses twitter Oauth

provides this service via a pop-up that activates when user clicks on
our site help button

limits the stream to our help account + @mentions of our account.



If necessary, our team will develop our own, but just thought we'd ask

Many thanks


Simon

   




[twitter-dev] Re: Getting number of lists a user is on

2009-12-08 Thread dbasch
I second that, users/show should be consistent with what you can see
by going to someone's profile page.

On Dec 8, 5:00 pm, Wynn Netherland  wrote:
> +1 for adding the count to users/show
>
> Wynn Netherland
> @pengwynn
>


[twitter-dev] Re: Ping bot now available

2009-12-08 Thread dbasch
Hi Fabien,

Just a thought in case you haven't considered it: be careful not to
get caught in an infinite loop. There are bots that listen to keywords
and reply to you. Someone may trigger a situation like that by making
you echo such keywords, either maliciously or by accident.

Diego

On Dec 8, 8:52 am, Fabien Penso  wrote:
> Hi everyone,
>
> I looked for a few minutes without finding a ping bot account on twitter.
>
> So here it goeshttp://twitter.com/pingpongbotusing the streaming
> API, therefor should be fast. Works on public replies for now, suggest
> ideas if you wish.
>
> ...


[twitter-dev] Re: Getting number of lists a user is on

2009-12-08 Thread Wynn Netherland
+1 for adding the count to users/show

Wynn Netherland
@pengwynn

On Dec 1, 2:28 pm, Quy  wrote:
> Is there an API call that will allow me to grab the number of lists
> that a user is on?
>
> I thought theusers/showcall would do this but it doesn't.
>
> http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-users%C2%A0show
>
> Thanks,
>
> Quy


[twitter-dev] Google Chrome Betas now Support Twitter Extensions

2009-12-08 Thread Abraham Williams
Google Chrome beta for Windows and Linux now support extensions.

http://googleblog.blogspot.com/2009/12/google-chrome-for-holidays-mac-linux.html

You can check out the Twitter extensions:
https://chrome.google.com/extensions/search?q=twitter

As well as my own:
https://chrome.google.com/extensions/detail/npdjhmblakdjfnnajeomfbogokloiggg

Abraham
-- 
Abraham Williams | Community Evangelist | http://web608.org
Project | Intersect | http://intersect.labs.poseurtech.com
Hacker | http://abrah.am | http://twitter.com/abraham
This email is: [ ] shareable [x] ask first [ ] private.
Sent from Madison, WI, United States


Re: [twitter-dev] analytics api

2009-12-08 Thread Dale Folla MeDia
I'm definitely interested.  I have one app that just came online and one
that is coming online next week.  Thanks, Dale
skype: dalemerritt

On Mon, Dec 7, 2009 at 9:51 AM, Peter Denton  wrote:

> Hello everyone,
> I am working on an analytics product called @tweetStory (
> www.tweetStory.com ) and am curious if people
> would have interest in accessing our API.
>
> We have not formally released one, but are contemplating if other twitter
> developers would want to show analytics in their apps around keywords and
> phrases. We have already talked to a few people who expressed interest, but
> would love to know if anyone felt that
>
> If you have a second, please let us know:
>
> http://spreadsheets.google.com/viewform?formkey=dDd1LXZrNFRsczNOYlJBa2NRaXBBV3c6MA
>
> Thanks
> Peter
>



-- 
Dale Merritt
Fol.la MeDia, LLC


Re: [twitter-dev] Twitter REST API Method: favorites

2009-12-08 Thread Michael Steuer
On that note, are there any plans to bring the favorites API in line with
other statuses APIs, ie. deprecate the page parameter, allow 'since_id',
'max_id' and 'count', etc.?


On 12/8/09 11:28 AM, "Raffi Krikorian"  wrote:

> that seems to be a deficiency in the format we chose to notate whether
> the endpoint requires authentication.
> 
> if you are calling
> 
> api.twitter.com/1/favorites/raffi.json
> 
> for example, then you don't need to authenticate because my favorites
> are public.  however, if you were to call
> 
> api.twitter.com/1/favorites.json
> 
> then authentication is required so we know "who you are".  in
> addition, authentication may also be required depending on whether the
> user you are requesting from is protected.
> 
> On Tue, Dec 8, 2009 at 11:23 AM, Daniel Silva
>  wrote:
>> authentication is required for this method? they say yes, but i already
>> tried without authentication with sucess.
>> 
>> --
>> best regards,
>> Daniel
>> 
> 
> 




Re: [twitter-dev] Re: After a re-retweet, I don't get an error, I successfully retweeted some random Turkish guy instead.

2009-12-08 Thread Mark McBride
There is actually a comment in the code (placed by me) about the
misspelling :)  Didn't want to break anybody's parsing though.  On
errors vs. error, I'll take a look.

On Tue, Dec 8, 2009 at 6:25 AM, Kevin  wrote:
> Hi,
>
> It's great the problem has been identified and fixed.
>
> However, the API response shows "errors" instead of the regular
> "error", and the sentence "Share sharing is not permissable for this
> status" should be "permissIble".
>
> Not urgent, but I hope it will be fixed one day :-)
>
> Kevin
>
> On Dec 4, 5:23 am, Mark McBride  wrote:
>> Ergh, rolled back.  It should be out for good tomorrow.
>>
>>    ---Mark
>>
>>
>>
>>
>>
>> On Thu, Dec 3, 2009 at 6:51 PM, Mark McBride  wrote:
>> > This should be fixed in production now.  Trying to re-retweet will
>> > result in a 403
>>
>> > On Thu, Dec 3, 2009 at 11:35 AM, Ed Costello  wrote:
>> >> On Thu, Dec 3, 2009 at 14:29, Mark McBride  wrote:
>>
>> >>> The problem has been identified, we should have a fix out today
>>
>> >> Fantastic, thanks!
>> >>  -- -ed costello
>> >> @epc / +13474080372
>>
>> > --
>> >   ---Mark
>>
>> >http://twitter.com/mccv
>>
>> --
>>    ---Mark
>>
>> http://twitter.com/mccv
>



-- 
   ---Mark

http://twitter.com/mccv


Re: [twitter-dev] Twitter REST API Method: favorites

2009-12-08 Thread Raffi Krikorian
that seems to be a deficiency in the format we chose to notate whether
the endpoint requires authentication.

if you are calling

api.twitter.com/1/favorites/raffi.json

for example, then you don't need to authenticate because my favorites
are public.  however, if you were to call

api.twitter.com/1/favorites.json

then authentication is required so we know "who you are".  in
addition, authentication may also be required depending on whether the
user you are requesting from is protected.

On Tue, Dec 8, 2009 at 11:23 AM, Daniel Silva
 wrote:
> authentication is required for this method? they say yes, but i already
> tried without authentication with sucess.
>
> --
> best regards,
> Daniel
>



-- 
Raffi Krikorian
Twitter Platform Team
http://twitter.com/raffi


[twitter-dev] Twitter REST API Method: favorites

2009-12-08 Thread Daniel Silva
authentication is required for this method? they say yes, but i already
tried without authentication with sucess.

-- 
best regards,
Daniel


Re: [twitter-dev] analytics api

2009-12-08 Thread Peter Denton
Thanks Abraham,
We are going to be working on our API over the next month and will let you
know when we have some methods exposed.

Thanks! Also, for all of your help and support.

Cheers
Peter

On Tue, Dec 8, 2009 at 10:10 AM, Abraham Williams <4bra...@gmail.com> wrote:

> I would be interested in trying a widget to embed on sites.
>
> Abraham
>
>
> On Mon, Dec 7, 2009 at 11:51, Peter Denton  wrote:
>
>> Hello everyone,
>> I am working on an analytics product called @tweetStory (
>> www.tweetStory.com) and am curious if people would have interest in
>> accessing our API.
>>
>> We have not formally released one, but are contemplating if other twitter
>> developers would want to show analytics in their apps around keywords and
>> phrases. We have already talked to a few people who expressed interest, but
>> would love to know if anyone felt that
>>
>> If you have a second, please let us know:
>>
>> http://spreadsheets.google.com/viewform?formkey=dDd1LXZrNFRsczNOYlJBa2NRaXBBV3c6MA
>>
>> Thanks
>> Peter
>>
>
>
>
> --
> Abraham Williams | Community Evangelist | http://web608.org
> Project | Intersect | http://intersect.labs.poseurtech.com
> Hacker | http://abrah.am | http://twitter.com/abraham
> This email is: [ ] shareable [x] ask first [ ] private.
> Sent from Madison, WI, United States
>


Re: [twitter-dev] Looking for a simple Open Source Client - for Site Customer Support

2009-12-08 Thread Abraham Williams
With a little bit of work you could use Drupal with the Twitter module and a
few others.

http://drupal.org
http://drupal.org/project/twitter
http://drupal.org/project/twitter_search
http://drupal.org/project/lightbox2

Sbraham

On Sat, Dec 5, 2009 at 16:33, coolrebel  wrote:

> Does anyone know of a v simple site-driven / site based twitter client
> that could do the following?
>
>
>
> allow site visitors / registered users to tweet us from their account
> to our customer support account.
>
> uses twitter Oauth
>
> provides this service via a pop-up that activates when user clicks on
> our site help button
>
> limits the stream to our help account + @mentions of our account.
>
>
>
> If necessary, our team will develop our own, but just thought we'd ask
>
> Many thanks
>
>
> Simon
>



-- 
Abraham Williams | Community Evangelist | http://web608.org
Project | Intersect | http://intersect.labs.poseurtech.com
Hacker | http://abrah.am | http://twitter.com/abraham
This email is: [ ] shareable [x] ask first [ ] private.
Sent from Madison, WI, United States


Re: [twitter-dev] Re: How to build a form to Login into Twitter?

2009-12-08 Thread Abraham Williams
Can you clarify what you mean by login into Twitter?

If you are want to use the API to interact with Twitter on behalf of the
user my OAuth example is a good place to start.

If you want to be able to log users into the Twitter website from your site
I don't think there is any way to do that without really dirty hacks that
are likely to break.

Abraham

On Mon, Dec 7, 2009 at 08:15, Feras Allaou  wrote:

> Thank you very much .
> So OAuth give me the ability to login ? & to let my application
> loginto twitter account no ?
> also if I want to update my status using my application , they write
> down that I updated my status using my application name ?
>
> Waiting ur reply.
>
> On Dec 7, 4:10 am, Tobias Nix  wrote:
> > Hello Feras,
> >
> > have a look onhttp://apiwiki.twitter.com/OAuth-Examples
> > There are a lot of examples like:http://twitter.abrah.am/
> >
> > Hth, Tobias
> >
> >
> >
> >
> >
> > On Sun, Dec 6, 2009 at 18:58, Feras Allaou 
> wrote:
> > > Dear Sirs,
> >
> > > I really need your help . I tried to read the Api wiki but I didn't
> > > understand anything :S . I want anyone who can help me in building a
> > > form to Login into Twitter ! I am PHP programmer , so could anyone
> > > explain the concept for me ?
> >
> > > Waiting your kind reply.
> >
> > > Regards,
> > > Feras Allaou
> >
> > --
> > ★ Tobias Nix ‐http://paupau.de☎ 0173 5138661
> > ☞http://twitter.com/paupaude
> > ☞http://www.xing.com/profile/Tobias_Nix/- Hide quoted text -
> >
> > - Show quoted text -
>



-- 
Abraham Williams | Community Evangelist | http://web608.org
Project | Intersect | http://intersect.labs.poseurtech.com
Hacker | http://abrah.am | http://twitter.com/abraham
This email is: [ ] shareable [x] ask first [ ] private.
Sent from Madison, WI, United States


Re: [twitter-dev] unexpected update status behavior when "RT..." text included

2009-12-08 Thread Raffi Krikorian
i think that's precisely it.  the twitter API follows (mostly) the
same commands that are available over SMS.  if you send a tweet that
starts with "RT", then the API will assume you are attempting to do a
native RT.

On Tue, Dec 8, 2009 at 10:28 AM, Cameron Kaiser  wrote:
>> I just came across a weird bug.
>> When updating statuses with the text "RT..." included, unexpected
>> things happen.
>
> If it's first position in a line, it's probably being seen as an SMS
> command (there is an RT SMS command).
>
> --
>  personal: http://www.cameronkaiser.com/ 
> --
>  Cameron Kaiser * Floodgap Systems * www.floodgap.com * ckai...@floodgap.com
> -- Another visitor. Stay awhile. Stay forever! -- Professor Elvin Atombender 
> --
>



-- 
Raffi Krikorian
Twitter Platform Team
http://twitter.com/raffi


[twitter-dev] 404 Errors on friends and followers using cursors

2009-12-08 Thread Ammo Collector
If you get the following URLs and continue to using the next_cursor,
you receive incorrect 404s:

http://twitter.com/statuses/friends/debra_bee.xml?cursor=1305544343158947280
http://twitter.com/statuses/followers/fraying_ends.xml?cursor=-1
http://twitter.com/statuses/followers/Sabrinita_Linda.xml?cursor=-1

Any ideas?


Re: [twitter-dev] unexpected update status behavior when "RT..." text included

2009-12-08 Thread Cameron Kaiser
> I just came across a weird bug.
> When updating statuses with the text "RT..." included, unexpected
> things happen.

If it's first position in a line, it's probably being seen as an SMS
command (there is an RT SMS command).

-- 
 personal: http://www.cameronkaiser.com/ --
  Cameron Kaiser * Floodgap Systems * www.floodgap.com * ckai...@floodgap.com
-- Another visitor. Stay awhile. Stay forever! -- Professor Elvin Atombender --


Re: [twitter-dev] Re: How to detect 'Duplicate text' failure to send tweet

2009-12-08 Thread Raffi Krikorian
> Does this 'duplicate text' have a time period for which it is invalid?
> i.e. how long do I have to wait before sending the same text?

we currently reject tweets that have an exact string match to any
tweet sent "recently" (a few hours).

> Is this what I have heard called 'recurring tweets'? If so, I read
> somewhere that they are going to be allowed to re-occur at some point
> soon - is this correct?

i'm not sure what you mean by "allowed to re-occur at some point
soon".  i don't think we're going to change the logic around duplicate
tweets, but what we are working on is better error messaging when we
reject a tweet.

-- 
Raffi Krikorian
Twitter Platform Team
http://twitter.com/raffi


Re: [twitter-dev] Re: How to detect 'Duplicate text' failure to send tweet

2009-12-08 Thread Raffi Krikorian
oh - i apologise, i think i misunderstood your question.

yes - if you send a duplicate tweet while using the twitter.com
website, we put up an error on the web page.  however, if you send a
duplicate tweet through our API, we will silently fail and return a
200 response.

i'm not positive what you are saying when you say "If I use Tweet# and
do the same...", but i suspect it falls into the latter of what i
said.

On Tue, Dec 8, 2009 at 8:52 AM, Stuart Smith
 wrote:
> Hi Raffi, thanks for the reply but I'm still unsure of the process.
>
> If I send a tweet with the same text more than once via twitter.com I
> get a pop-upm saying to try some other text as I've sent that text
> before and the tweet is not created so there is no id.
>
> If I use Tweet# and do the same I get a 200 OK response which suggests
> that the tweet was created but it never gets sent to the recipient and
> again I have no id.
>
> Can you explain a bit more.
>
> Cheers,
>
> On Dec 8, 4:23 pm, Raffi Krikorian  wrote:
>> Currently, we recommend people look at the tweet ID and just
>> "remember" it. It is on the short list to get an appropriate error
>> code returned if we reject a tweetx
>>
>> On Dec 8, 2009, at 1:10 AM, Stuart Smith >
>>  > wrote:
>> > Is there any way to check via the api that the tweet you tried to send
>> > was not sent because it was a duplicate? I get a 200 OK response so
>> > maybe there is another way? BTW I am using Tweet#.
>>
>> > Thanks,
>



-- 
Raffi Krikorian
Twitter Platform Team
http://twitter.com/raffi


[twitter-dev] unexpected update status behavior when "RT..." text included

2009-12-08 Thread ronenpinko
Hi,

I just came across a weird bug.
When updating statuses with the text "RT..." included, unexpected
things happen.

for instance, when updating my status with this:

RT...
http://duncsweb.com/2009/12/07/review-snaptu-twitter-facebook-rss-google-calendar-flickr-tv-movies-picasa-more-on-your-mobile-device/

I get
(on the web):
can't find that person. did you mispelled the name

(on my application)
i get a response of a status I wrote 7 days ago


Re: [twitter-dev] Mobile geolocation and cellid

2009-12-08 Thread Anton Krasovsky
AFAIK they mostly target smarphones and require both cell id and wifi
ssid data to do the lookup, so it's not an option for j2me-only
devices.


On Tue, Dec 8, 2009 at 5:29 PM, Jonathan Markwell
 wrote:
> Skyhook Wireless could be another option: http://www.skyhookwireless.com
>
> On Tue, Dec 8, 2009 at 4:50 PM, Anton Krasovsky
>  wrote:
>> Sure, but I think their coverage is somewhat scarce? Yahoo Fireeagle
>> seems to support cellid, but I don't think is workable to ask users to
>> signup for Fireeagle. Then there is http://www.navizon.com/ but it's
>> too expensive for me at this stage.
>>
>> Anton
>>
>> On Tue, Dec 8, 2009 at 4:35 PM, Abraham Williams <4bra...@gmail.com> wrote:
>>> If you are making request to the Twitter API you should be able to make
>>> request to OpenCelID to get an approximate lat/lon location.
>>> http://www.opencellid.org/api
>>>
>>> On Tue, Dec 8, 2009 at 04:44, Anton Krasovsky 
>>> wrote:

 Thanks for reply! I would be nice if you'd have considered adding
 something
 like that in the future - iPhones and such are nice, but there are
 plenty more users with simplier phones that don't have GPS.

 Anton

 On Mon, Dec 7, 2009 at 9:14 PM, Raffi Krikorian  wrote:
 > hi anton.
 > that's interesting, but, right now, we don't have anything like that on
 > our
 > roadmap. devices like the iPod touch, i believe, do the cell ID ->
 > coordinate mapping internally, and then could send those coordinates to
 > our
 > API.
 >
 > On Mon, Dec 7, 2009 at 12:14 PM, anton 
 > wrote:
 >>
 >> Is there any plans to support cellid based location updates for mobile
 >> devices that aren't equipped with GPS?
 >>
 >> My understanding that currently to update user's location one has to
 >> obtain users latitude and longitude, which aren't readily available on
 >> most handsets (except the newest ones equipped with GPS) .
 >>
 >> It would be terrific if Twitter would allow to use cellid to update
 >> the user's location, similar to what Google Latitude does.
 >>
 >> Regards,
 >> Anton
 >
 >
 >
 > --
 > Raffi Krikorian
 > Twitter Platform Team
 > http://twitter.com/raffi
 >
>>>
>>>
>>>
>>> --
>>> Abraham Williams | Community Evangelist | http://web608.org
>>> Hacker | http://abrah.am | http://twitter.com/abraham
>>> Project | Awesome Lists | http://twitterli.st
>>> This email is: [ ] blogable [x] ask first [ ] private.
>>> Sent from Madison, WI, United States
>>
>
>
>
> --
> Jonathan Markwell
> Engineer | Founder | Connector
>
> Inuda Innovations Ltd, Brighton, UK
>
> Web application development & support
> Twitter & Facebook integration specialists
> http://inuda.com
>
> Organising the world's first events for the Twitter developer Community
> http://TwitterDeveloperNest.com
>
> Providing a nice little place to work in the middle of Brighton -
> http://theskiff.org
>
> Measuring your brand's visibility on the social web - http://HowSociable.com
>
> mob: 07766 021 485 | tel: 01273 704 549 | fax: 01273 376 953
> skype: jlmarkwell | twitter: http://twitter.com/jot
>


[twitter-dev] Re: How to detect 'Duplicate text' failure to send tweet

2009-12-08 Thread Stuart Smith
Hi Abraham, so I should keep a list of all of the tweets I send and
check the id of each and every status I send to see if it matches a
previously sent id? That's quite a lot of additional processing.

Does this 'duplicate text' have a time period for which it is invalid?
i.e. how long do I have to wait before sending the same text?

Is this what I have heard called 'recurring tweets'? If so, I read
somewhere that they are going to be allowed to re-occur at some point
soon - is this correct?

Cheers,

On Dec 8, 5:38 pm, Abraham Williams <4bra...@gmail.com> wrote:
> When you create a status you get a 200 response and the current user/status
> object which includes the status id. If you try to create a duplicate status
> it should return the same status object with a status id that matches the
> previous one.
>
> Abraham
>
> On Tue, Dec 8, 2009 at 10:52, Stuart Smith 
>
>
> > wrote:
> > Hi Raffi, thanks for the reply but I'm still unsure of the process.
>
> > If I send a tweet with the same text more than once via twitter.com I
> > get a pop-upm saying to try some other text as I've sent that text
> > before and the tweet is not created so there is no id.
>
> > If I use Tweet# and do the same I get a 200 OK response which suggests
> > that the tweet was created but it never gets sent to the recipient and
> > again I have no id.
>
> > Can you explain a bit more.
>
> > Cheers,
>
> > On Dec 8, 4:23 pm, Raffi Krikorian  wrote:
> > > Currently, we recommend people look at the tweet ID and just
> > > "remember" it. It is on the short list to get an appropriate error
> > > code returned if we reject a tweetx
>
> > > On Dec 8, 2009, at 1:10 AM, Stuart Smith <
> > stuartmartinsm...@btinternet.com
>
> > >  > wrote:
> > > > Is there any way to check via the api that the tweet you tried to send
> > > > was not sent because it was a duplicate? I get a 200 OK response so
> > > > maybe there is another way? BTW I am using Tweet#.
>
> > > > Thanks,
>
> --
> Abraham Williams | Community Evangelist |http://web608.org
> Hacker |http://abrah.am|http://twitter.com/abraham
> Project | Awesome Lists |http://twitterli.st
> This email is: [ ] blogable [x] ask first [ ] private.
> Sent from Madison, WI, United States


Re: [twitter-dev] API Ready Apps List

2009-12-08 Thread Jonathan Markwell
TwitterLand combines 9 Twitter related app APIs into a single Ruby library:
http://github.com/squeejee/twitterland/

On Tue, Dec 8, 2009 at 5:58 PM, Abraham Williams <4bra...@gmail.com> wrote:
> Awesome. Who is going to be the first to integrate all of them into a single
> project?
> Abraham
>
> On Mon, Dec 7, 2009 at 16:13, Peter Denton  wrote:
>>
>> Hey Everyone,
>> As promised, I have published the list of people who have API's ready for
>> other app developers to use in their twitter projects.
>> If you have not added your app or service, please do. Again, I think this
>> is for everyone's benefit. Im always looking for cool api's to play with,
>> and am sure everyone else is as well.
>>
>> http://twibs.com/mashups.php
>>
>> Thanks
>> Peter
>
>
>
> --
> Abraham Williams | Community Evangelist | http://web608.org
> Project | Intersect | http://intersect.labs.poseurtech.com
> Hacker | http://abrah.am | http://twitter.com/abraham
> This email is: [ ] shareable [x] ask first [ ] private.
> Sent from Madison, WI, United States



-- 
Jonathan Markwell
Engineer | Founder | Connector

Inuda Innovations Ltd, Brighton, UK

Web application development & support
Twitter & Facebook integration specialists
http://inuda.com

Organising the world's first events for the Twitter developer Community
http://TwitterDeveloperNest.com

Providing a nice little place to work in the middle of Brighton -
http://theskiff.org

Measuring your brand's visibility on the social web - http://HowSociable.com

mob: 07766 021 485 | tel: 01273 704 549 | fax: 01273 376 953
skype: jlmarkwell | twitter: http://twitter.com/jot


Re: [twitter-dev] analytics api

2009-12-08 Thread Abraham Williams
I would be interested in trying a widget to embed on sites.

Abraham

On Mon, Dec 7, 2009 at 11:51, Peter Denton  wrote:

> Hello everyone,
> I am working on an analytics product called @tweetStory (
> www.tweetStory.com) and am curious if people would have interest in
> accessing our API.
>
> We have not formally released one, but are contemplating if other twitter
> developers would want to show analytics in their apps around keywords and
> phrases. We have already talked to a few people who expressed interest, but
> would love to know if anyone felt that
>
> If you have a second, please let us know:
>
> http://spreadsheets.google.com/viewform?formkey=dDd1LXZrNFRsczNOYlJBa2NRaXBBV3c6MA
>
> Thanks
> Peter
>



-- 
Abraham Williams | Community Evangelist | http://web608.org
Project | Intersect | http://intersect.labs.poseurtech.com
Hacker | http://abrah.am | http://twitter.com/abraham
This email is: [ ] shareable [x] ask first [ ] private.
Sent from Madison, WI, United States


Re: [twitter-dev] Re: statuses/friends issue?

2009-12-08 Thread Abraham Williams
Are they same users being returned in the results? Can you check for
duplicates and exit the loop as a temporary solution?

You should open a bug ticket:
http://code.google.com/p/twitter-api/issues/entry

Abraham

On Mon, Dec 7, 2009 at 12:46, hansamann  wrote:

> I am still seeing this issue. I am pasting some groovy code below, you
> can run thus straight in groovyConsole with your own user/pass:
>
> ---
> import twitter4j.*
> import twitter4j.http.*
>
> start()
>
> @Grab(group='net.homeip.yusuke', module='twitter4j',
> version='[2.0.10,)')
> def start()
> {
>def users = getUsers() //this never returns!
>println ("Total: ${user.size()} users.")
> }
>
>
> def getUsers(page = 1)
> {
>def twitter = new Twitter('user', 'pass')
>def users = twitter.getFriendsStatuses(new Paging(page))
>println ("getUsers: got ${users.size()} users for page $
> {page}...")
>
>if (users.size() > 90)
>return users + getUsers(page+1)
>else
>return users
> }
>
>
> The output I am getting this this:
>
> oneeverbank-lm:scripts haiges$ groovy twitter_friends_status.groovy
> getUsers: got 100 users for page 1...
> getUsers: got 100 users for page 2...
> getUsers: got 100 users for page 3...
> getUsers: got 100 users for page 4...
> getUsers: got 100 users for page 5...
> getUsers: got 100 users for page 6...
> getUsers: got 100 users for page 7...
> getUsers: got 100 users for page 8...
> getUsers: got 100 users for page 9...
> getUsers: got 100 users for page 10...
> ...
>
> So the recursion is never stopped as there are always 100 users
> returned. I just have about 400 friends using this account, so
> somethign seems wrong.
>
> Could someone from Twitter please investigate this? It's a big issue
> for my app as I am not able to cache the user information any more.
>
> Thanx
> Sven
> On Dec 6, 8:25 pm, hansamann  wrote:
> > Hi all,
> >
> > my code is calling api method statuses/friends with an increasing
> > paging to get all friends information. Since a couple of hours it
> > seems it never reaches a page with no friends or less than n friends
> > so my code stops the recursion.
> >
> > Anyone similar problems?
>



-- 
Abraham Williams | Community Evangelist | http://web608.org
Project | Intersect | http://intersect.labs.poseurtech.com
Hacker | http://abrah.am | http://twitter.com/abraham
This email is: [ ] shareable [x] ask first [ ] private.
Sent from Madison, WI, United States


Re: [twitter-dev] API Ready Apps List

2009-12-08 Thread Abraham Williams
Awesome. Who is going to be the first to integrate all of them into a single
project?

Abraham

On Mon, Dec 7, 2009 at 16:13, Peter Denton  wrote:

> Hey Everyone,
> As promised, I have published the list of people who have API's ready for
> other app developers to use in their twitter projects.
> If you have not added your app or service, please do. Again, I think this
> is for everyone's benefit. Im always looking for cool api's to play with,
> and am sure everyone else is as well.
>
> http://twibs.com/mashups.php
>
> Thanks
> Peter
>



-- 
Abraham Williams | Community Evangelist | http://web608.org
Project | Intersect | http://intersect.labs.poseurtech.com
Hacker | http://abrah.am | http://twitter.com/abraham
This email is: [ ] shareable [x] ask first [ ] private.
Sent from Madison, WI, United States


Re: [twitter-dev] Gone over update limit and don't know why

2009-12-08 Thread Abraham Williams
You are looking at the rate limiting for GET requests. POST request for
creating updates has a different limit:
http://help.twitter.com/forums/10711/entries/15364

Abraham

On Mon, Dec 7, 2009 at 15:34, Stuart Smith  wrote:

> I am using Tweet# and using a loop to generate a number of tweets from
> a larger string as follows:
>
>List result = new List(Regex.Split(output,
> @"(?<=\G.{120})"));
>for (int i = result.Count - 1; i > -1; i--)
>{
>string text = "/statuses/update.xml?stat...@ "
> + result.ElementAt(i);
>var twitter = FluentTwitter.CreateRequest()
>.AuthenticateAs("xx", "yy")
>.Direct(text)
>.Post();
>var response = twitter.Request();
>Thread.Sleep(100);
>}
>
> [ignore the crappy C# as this is my 1st attempt at it]
>
> and I get a 403 forbidden response which suggests that I am over my
> update limit:
>
> 
> 
>  /1/statuses/update.xml?status=%40xx+r+xx.
> +xxx.&source=tweetsharp
>  User is over daily status update limit. 
>
> However, when I get my limits data using .Account().GetRateLimitStatus
> () I get this:
>
> base {Dimebrain.TweetSharp.Model.PropertyChangedBase} = 136 / 150
> remaining.
>
> What am I doing wrong?? I am sure I read somewhere that there is no
> update limit.
>
> I have only sent 150-200 tweets in the past 8 hours altho quite a few
> of them were rejected (I think) as 'duplicate text' since this is a
> test application and I wasn;t continually changing the tweet text.
>
> Thanks,
>



-- 
Abraham Williams | Community Evangelist | http://web608.org
Hacker | http://abrah.am | http://twitter.com/abraham
Project | Awesome Lists | http://twitterli.st
This email is: [ ] blogable [x] ask first [ ] private.
Sent from Madison, WI, United States


Re: [twitter-dev] Re: Regarding the search API based on Geo location

2009-12-08 Thread Abraham Williams
Both of those links work fine for me. Maybe it was just a temporary hiccup.

Abraham

On Mon, Dec 7, 2009 at 15:42, Diogo  wrote:

> Hi all,
>
> If been using the search API for some months for various projects and
> now Ive been asked to code an app that is supposed to search for a
> specific word within the city of São Paulo and display the results on
> google maps using the tweet location.
>
> After reading the Search API docs  (http://apiwiki.twitter.com/Twitter-
> Search-API-Method%3A-search), I understood (perhaps wrongly) that Im
> supposed to search like this, for example:
>
>
> http://search.twitter.com:80/search.json?q=festa&geocode=-23.55,-46.63,25km
>
> What Im trying here: Im searching for the word "festa" providing the
> location of the center of São Paulo (according to wikipedia) and an
> arbitrary radius. As I understood, this is supoposed to return
> geotagged tweets with the word "festa" from within the provided geo
> range. Right?
>
> However, Ive tried searching like this using Zend_Twitter PHP class
> and pasting this URL directly to the browser. In both cases, I get
> this error:
>
> error: "Couldn't find Status with ID=6025096957"
>
> Whats it means? What am I doing wrong here? I probably missing
> something, but I just cant figure it out.
>
> Actually, even when I try the URL provided as example (http://
> search.twitter.com/search.atom?geocode=40.757929%2C-73.985506%2C25km)
> on the docs, I get this same message .
>
> So, how am I supposed to be doing this? Please help.
>



-- 
Abraham Williams | Community Evangelist | http://web608.org
Hacker | http://abrah.am | http://twitter.com/abraham
Project | Awesome Lists | http://twitterli.st
This email is: [ ] blogable [x] ask first [ ] private.
Sent from Madison, WI, United States


Re: [twitter-dev] Re: Get a user's first tweet?

2009-12-08 Thread Abraham Williams
http://apiwiki.twitter.com/Things-Every-Developer-Should-Know#6Therearepaginationlimits

On Mon, Dec 7, 2009 at 21:12, Adam Shannon  wrote:

> I believe that it's 3200.
>
> On Mon, Dec 7, 2009 at 19:17, Quertant  wrote:
> > What is the max count?
> > Sorry, I am new to the twitter API.
> >
> > On Dec 7, 6:25 am, John Meyer  wrote:
> >> On 12/6/2009 6:13 PM, Quertant wrote:
> >>
> >> > How might I go about retrieving just the first tweet that a given user
> >> > has ever tweeted? Or, more generally, how might I go about listing a
> >> > user's tweets in REVERSE order from how they are displayed on the
> >> > site? Thanks for the help.
> >>
> >> > -Marcus
> >>
> >> it depends upon how many times that person has "tweeted".  If it's above
> >> the max-count, then no.
> >
>
>
>
> --
> - Adam Shannon ( http://ashannon.us )
>



-- 
Abraham Williams | Community Evangelist | http://web608.org
Hacker | http://abrah.am | http://twitter.com/abraham
Project | Awesome Lists | http://twitterli.st
This email is: [ ] blogable [x] ask first [ ] private.
Sent from Madison, WI, United States


[twitter-dev] enablert option for statuses/user_timeline

2009-12-08 Thread Cameron Kaiser
Any thought given to adding an 'enable_rt' argument or somesuch to methods
like statuses/user_timeline? I understand and completely agree with not
putting newRTs in those timelines by default, but integrating two calls to
make a complete timeline is not ideal.

-- 
 personal: http://www.cameronkaiser.com/ --
  Cameron Kaiser * Floodgap Systems * www.floodgap.com * ckai...@floodgap.com
-- /etc/motd: /earth is 98% full. please delete anyone you can. ---


Re: [twitter-dev] Re: How to detect 'Duplicate text' failure to send tweet

2009-12-08 Thread Abraham Williams
When you create a status you get a 200 response and the current user/status
object which includes the status id. If you try to create a duplicate status
it should return the same status object with a status id that matches the
previous one.

Abraham

On Tue, Dec 8, 2009 at 10:52, Stuart Smith  wrote:

> Hi Raffi, thanks for the reply but I'm still unsure of the process.
>
> If I send a tweet with the same text more than once via twitter.com I
> get a pop-upm saying to try some other text as I've sent that text
> before and the tweet is not created so there is no id.
>
> If I use Tweet# and do the same I get a 200 OK response which suggests
> that the tweet was created but it never gets sent to the recipient and
> again I have no id.
>
> Can you explain a bit more.
>
> Cheers,
>
> On Dec 8, 4:23 pm, Raffi Krikorian  wrote:
> > Currently, we recommend people look at the tweet ID and just
> > "remember" it. It is on the short list to get an appropriate error
> > code returned if we reject a tweetx
> >
> > On Dec 8, 2009, at 1:10 AM, Stuart Smith <
> stuartmartinsm...@btinternet.com
> >
> >  > wrote:
> > > Is there any way to check via the api that the tweet you tried to send
> > > was not sent because it was a duplicate? I get a 200 OK response so
> > > maybe there is another way? BTW I am using Tweet#.
> >
> > > Thanks,
>



-- 
Abraham Williams | Community Evangelist | http://web608.org
Hacker | http://abrah.am | http://twitter.com/abraham
Project | Awesome Lists | http://twitterli.st
This email is: [ ] blogable [x] ask first [ ] private.
Sent from Madison, WI, United States


Re: [twitter-dev] Mobile geolocation and cellid

2009-12-08 Thread Jonathan Markwell
Skyhook Wireless could be another option: http://www.skyhookwireless.com

On Tue, Dec 8, 2009 at 4:50 PM, Anton Krasovsky
 wrote:
> Sure, but I think their coverage is somewhat scarce? Yahoo Fireeagle
> seems to support cellid, but I don't think is workable to ask users to
> signup for Fireeagle. Then there is http://www.navizon.com/ but it's
> too expensive for me at this stage.
>
> Anton
>
> On Tue, Dec 8, 2009 at 4:35 PM, Abraham Williams <4bra...@gmail.com> wrote:
>> If you are making request to the Twitter API you should be able to make
>> request to OpenCelID to get an approximate lat/lon location.
>> http://www.opencellid.org/api
>>
>> On Tue, Dec 8, 2009 at 04:44, Anton Krasovsky 
>> wrote:
>>>
>>> Thanks for reply! I would be nice if you'd have considered adding
>>> something
>>> like that in the future - iPhones and such are nice, but there are
>>> plenty more users with simplier phones that don't have GPS.
>>>
>>> Anton
>>>
>>> On Mon, Dec 7, 2009 at 9:14 PM, Raffi Krikorian  wrote:
>>> > hi anton.
>>> > that's interesting, but, right now, we don't have anything like that on
>>> > our
>>> > roadmap. devices like the iPod touch, i believe, do the cell ID ->
>>> > coordinate mapping internally, and then could send those coordinates to
>>> > our
>>> > API.
>>> >
>>> > On Mon, Dec 7, 2009 at 12:14 PM, anton 
>>> > wrote:
>>> >>
>>> >> Is there any plans to support cellid based location updates for mobile
>>> >> devices that aren't equipped with GPS?
>>> >>
>>> >> My understanding that currently to update user's location one has to
>>> >> obtain users latitude and longitude, which aren't readily available on
>>> >> most handsets (except the newest ones equipped with GPS) .
>>> >>
>>> >> It would be terrific if Twitter would allow to use cellid to update
>>> >> the user's location, similar to what Google Latitude does.
>>> >>
>>> >> Regards,
>>> >> Anton
>>> >
>>> >
>>> >
>>> > --
>>> > Raffi Krikorian
>>> > Twitter Platform Team
>>> > http://twitter.com/raffi
>>> >
>>
>>
>>
>> --
>> Abraham Williams | Community Evangelist | http://web608.org
>> Hacker | http://abrah.am | http://twitter.com/abraham
>> Project | Awesome Lists | http://twitterli.st
>> This email is: [ ] blogable [x] ask first [ ] private.
>> Sent from Madison, WI, United States
>



-- 
Jonathan Markwell
Engineer | Founder | Connector

Inuda Innovations Ltd, Brighton, UK

Web application development & support
Twitter & Facebook integration specialists
http://inuda.com

Organising the world's first events for the Twitter developer Community
http://TwitterDeveloperNest.com

Providing a nice little place to work in the middle of Brighton -
http://theskiff.org

Measuring your brand's visibility on the social web - http://HowSociable.com

mob: 07766 021 485 | tel: 01273 704 549 | fax: 01273 376 953
skype: jlmarkwell | twitter: http://twitter.com/jot


Re: [twitter-dev] Mobile geolocation and cellid

2009-12-08 Thread Anton Krasovsky
Sure, but I think their coverage is somewhat scarce? Yahoo Fireeagle
seems to support cellid, but I don't think is workable to ask users to
signup for Fireeagle. Then there is http://www.navizon.com/ but it's
too expensive for me at this stage.

Anton

On Tue, Dec 8, 2009 at 4:35 PM, Abraham Williams <4bra...@gmail.com> wrote:
> If you are making request to the Twitter API you should be able to make
> request to OpenCelID to get an approximate lat/lon location.
> http://www.opencellid.org/api
>
> On Tue, Dec 8, 2009 at 04:44, Anton Krasovsky 
> wrote:
>>
>> Thanks for reply! I would be nice if you'd have considered adding
>> something
>> like that in the future - iPhones and such are nice, but there are
>> plenty more users with simplier phones that don't have GPS.
>>
>> Anton
>>
>> On Mon, Dec 7, 2009 at 9:14 PM, Raffi Krikorian  wrote:
>> > hi anton.
>> > that's interesting, but, right now, we don't have anything like that on
>> > our
>> > roadmap. devices like the iPod touch, i believe, do the cell ID ->
>> > coordinate mapping internally, and then could send those coordinates to
>> > our
>> > API.
>> >
>> > On Mon, Dec 7, 2009 at 12:14 PM, anton 
>> > wrote:
>> >>
>> >> Is there any plans to support cellid based location updates for mobile
>> >> devices that aren't equipped with GPS?
>> >>
>> >> My understanding that currently to update user's location one has to
>> >> obtain users latitude and longitude, which aren't readily available on
>> >> most handsets (except the newest ones equipped with GPS) .
>> >>
>> >> It would be terrific if Twitter would allow to use cellid to update
>> >> the user's location, similar to what Google Latitude does.
>> >>
>> >> Regards,
>> >> Anton
>> >
>> >
>> >
>> > --
>> > Raffi Krikorian
>> > Twitter Platform Team
>> > http://twitter.com/raffi
>> >
>
>
>
> --
> Abraham Williams | Community Evangelist | http://web608.org
> Hacker | http://abrah.am | http://twitter.com/abraham
> Project | Awesome Lists | http://twitterli.st
> This email is: [ ] blogable [x] ask first [ ] private.
> Sent from Madison, WI, United States


[twitter-dev] Re: How to detect 'Duplicate text' failure to send tweet

2009-12-08 Thread Stuart Smith
Hi Raffi, thanks for the reply but I'm still unsure of the process.

If I send a tweet with the same text more than once via twitter.com I
get a pop-upm saying to try some other text as I've sent that text
before and the tweet is not created so there is no id.

If I use Tweet# and do the same I get a 200 OK response which suggests
that the tweet was created but it never gets sent to the recipient and
again I have no id.

Can you explain a bit more.

Cheers,

On Dec 8, 4:23 pm, Raffi Krikorian  wrote:
> Currently, we recommend people look at the tweet ID and just  
> "remember" it. It is on the short list to get an appropriate error  
> code returned if we reject a tweetx
>
> On Dec 8, 2009, at 1:10 AM, Stuart Smith 
>  > wrote:
> > Is there any way to check via the api that the tweet you tried to send
> > was not sent because it was a duplicate? I get a 200 OK response so
> > maybe there is another way? BTW I am using Tweet#.
>
> > Thanks,


Re: [twitter-dev] How to detect 'Duplicate text' failure to send tweet

2009-12-08 Thread Raffi Krikorian
Currently, we recommend people look at the tweet ID and just  
"remember" it. It is on the short list to get an appropriate error  
code returned if we reject a tweetx




On Dec 8, 2009, at 1:10 AM, Stuart Smith > wrote:



Is there any way to check via the api that the tweet you tried to send
was not sent because it was a duplicate? I get a 200 OK response so
maybe there is another way? BTW I am using Tweet#.

Thanks,


Re: [twitter-dev] Mobile geolocation and cellid

2009-12-08 Thread Abraham Williams
If you are making request to the Twitter API you should be able to make
request to OpenCelID to get an approximate lat/lon location.

http://www.opencellid.org/api

On Tue, Dec 8, 2009 at 04:44, Anton Krasovsky wrote:

> Thanks for reply! I would be nice if you'd have considered adding something
> like that in the future - iPhones and such are nice, but there are
> plenty more users with simplier phones that don't have GPS.
>
> Anton
>
> On Mon, Dec 7, 2009 at 9:14 PM, Raffi Krikorian  wrote:
> > hi anton.
> > that's interesting, but, right now, we don't have anything like that on
> our
> > roadmap. devices like the iPod touch, i believe, do the cell ID ->
> > coordinate mapping internally, and then could send those coordinates to
> our
> > API.
> >
> > On Mon, Dec 7, 2009 at 12:14 PM, anton 
> wrote:
> >>
> >> Is there any plans to support cellid based location updates for mobile
> >> devices that aren't equipped with GPS?
> >>
> >> My understanding that currently to update user's location one has to
> >> obtain users latitude and longitude, which aren't readily available on
> >> most handsets (except the newest ones equipped with GPS) .
> >>
> >> It would be terrific if Twitter would allow to use cellid to update
> >> the user's location, similar to what Google Latitude does.
> >>
> >> Regards,
> >> Anton
> >
> >
> >
> > --
> > Raffi Krikorian
> > Twitter Platform Team
> > http://twitter.com/raffi
> >
>



-- 
Abraham Williams | Community Evangelist | http://web608.org
Hacker | http://abrah.am | http://twitter.com/abraham
Project | Awesome Lists | http://twitterli.st
This email is: [ ] blogable [x] ask first [ ] private.
Sent from Madison, WI, United States


[twitter-dev] Re: Rate Limit & New API Features

2009-12-08 Thread Nik Fletcher
Thanks for the super-speedy reply, John!

Cheers

-N

On Dec 8, 2:29 pm, John Kalucki  wrote:
> There are several projects in the pipeline to help with rate limiting
> issues.
>
> -John Kaluckihttp://twitter.com/jkalucki
> Services, Twitter Inc.
>
>
>
> On Tue, Dec 8, 2009 at 6:24 AM, Nik Fletcher  wrote:
> > Hi Twitter API folks,
>
> > Over the last few months, there's been some big new features to the
> > API to match the Twitter.com feature set. Whilst that's awesome for
> > third-party developers and users alike, the rate limit has remained
> > the same. Looking back over the documentation, the last increase was
> > in June of this year, from 100 requests per 60 minute window to 150
> > requests - long before the lists or retweet features became available.
>
> > Whilst I'm *fully* aware that we (as a developer community) can
> > minimise the number of calls to the API, with new features being added
> > - and the related query-chaining that may be needed to provide folks
> > with an experience such as they're used to on the Twitter Web site
> > with the bells and whistles - are there any plans to increase the rate
> > limit for applications?
>
> > I should just add: this is in no way a whiny post at the rate limiting
> > that's currently in effect. We're not hearing of Socialite hitting the
> > rate limit a great deal (as we're deliberately refreshing Lists every
> > third refresh to preserve API calls) - I'm just posting to see what
> > the Twitter API team's thoughts are :)
>
> > Cheers,
>
> > Nik
>
> > ---
> > Nik Fletcher
> > Support / QA Manager
> > Realmac Software


Re: [twitter-dev] Daily Tweet Limit

2009-12-08 Thread Cameron Kaiser
> I want to limit tweets from certain users to say 5-10 per day. Is this
> possible? Can you help?

It is not possible with the Twitter API. But why not have your application
simply do the filtering up to a certain count?

-- 
 personal: http://www.cameronkaiser.com/ --
  Cameron Kaiser * Floodgap Systems * www.floodgap.com * ckai...@floodgap.com
-- In independent studies, research was found to cause cancer in rats. 


Re: [twitter-dev] Mobile geolocation and cellid

2009-12-08 Thread Anton Krasovsky
Thanks for reply! I would be nice if you'd have considered adding something
like that in the future - iPhones and such are nice, but there are
plenty more users with simplier phones that don't have GPS.

Anton

On Mon, Dec 7, 2009 at 9:14 PM, Raffi Krikorian  wrote:
> hi anton.
> that's interesting, but, right now, we don't have anything like that on our
> roadmap. devices like the iPod touch, i believe, do the cell ID ->
> coordinate mapping internally, and then could send those coordinates to our
> API.
>
> On Mon, Dec 7, 2009 at 12:14 PM, anton  wrote:
>>
>> Is there any plans to support cellid based location updates for mobile
>> devices that aren't equipped with GPS?
>>
>> My understanding that currently to update user's location one has to
>> obtain users latitude and longitude, which aren't readily available on
>> most handsets (except the newest ones equipped with GPS) .
>>
>> It would be terrific if Twitter would allow to use cellid to update
>> the user's location, similar to what Google Latitude does.
>>
>> Regards,
>> Anton
>
>
>
> --
> Raffi Krikorian
> Twitter Platform Team
> http://twitter.com/raffi
>


[twitter-dev] Daily Tweet Limit

2009-12-08 Thread Lightning007
I want to limit tweets from certain users to say 5-10 per day. Is this
possible? Can you help?


[twitter-dev] How to detect 'Duplicate text' failure to send tweet

2009-12-08 Thread Stuart Smith
Is there any way to check via the api that the tweet you tried to send
was not sent because it was a duplicate? I get a 200 OK response so
maybe there is another way? BTW I am using Tweet#.

Thanks,


Re: [twitter-dev] Rate Limit & New API Features

2009-12-08 Thread John Kalucki
There are several projects in the pipeline to help with rate limiting
issues.

-John Kalucki
http://twitter.com/jkalucki
Services, Twitter Inc.


On Tue, Dec 8, 2009 at 6:24 AM, Nik Fletcher  wrote:

> Hi Twitter API folks,
>
> Over the last few months, there's been some big new features to the
> API to match the Twitter.com feature set. Whilst that's awesome for
> third-party developers and users alike, the rate limit has remained
> the same. Looking back over the documentation, the last increase was
> in June of this year, from 100 requests per 60 minute window to 150
> requests - long before the lists or retweet features became available.
>
> Whilst I'm *fully* aware that we (as a developer community) can
> minimise the number of calls to the API, with new features being added
> - and the related query-chaining that may be needed to provide folks
> with an experience such as they're used to on the Twitter Web site
> with the bells and whistles - are there any plans to increase the rate
> limit for applications?
>
> I should just add: this is in no way a whiny post at the rate limiting
> that's currently in effect. We're not hearing of Socialite hitting the
> rate limit a great deal (as we're deliberately refreshing Lists every
> third refresh to preserve API calls) - I'm just posting to see what
> the Twitter API team's thoughts are :)
>
> Cheers,
>
> Nik
>
> ---
> Nik Fletcher
> Support / QA Manager
> Realmac Software
>


[twitter-dev] Re: After a re-retweet, I don't get an error, I successfully retweeted some random Turkish guy instead.

2009-12-08 Thread Kevin
Hi,

It's great the problem has been identified and fixed.

However, the API response shows "errors" instead of the regular
"error", and the sentence "Share sharing is not permissable for this
status" should be "permissIble".

Not urgent, but I hope it will be fixed one day :-)

Kevin

On Dec 4, 5:23 am, Mark McBride  wrote:
> Ergh, rolled back.  It should be out for good tomorrow.
>
>    ---Mark
>
>
>
>
>
> On Thu, Dec 3, 2009 at 6:51 PM, Mark McBride  wrote:
> > This should be fixed in production now.  Trying to re-retweet will
> > result in a 403
>
> > On Thu, Dec 3, 2009 at 11:35 AM, Ed Costello  wrote:
> >> On Thu, Dec 3, 2009 at 14:29, Mark McBride  wrote:
>
> >>> The problem has been identified, we should have a fix out today
>
> >> Fantastic, thanks!
> >>  -- -ed costello
> >> @epc / +13474080372
>
> > --
> >   ---Mark
>
> >http://twitter.com/mccv
>
> --
>    ---Mark
>
> http://twitter.com/mccv


[twitter-dev] Rate Limit & New API Features

2009-12-08 Thread Nik Fletcher
Hi Twitter API folks,

Over the last few months, there's been some big new features to the
API to match the Twitter.com feature set. Whilst that's awesome for
third-party developers and users alike, the rate limit has remained
the same. Looking back over the documentation, the last increase was
in June of this year, from 100 requests per 60 minute window to 150
requests - long before the lists or retweet features became available.

Whilst I'm *fully* aware that we (as a developer community) can
minimise the number of calls to the API, with new features being added
- and the related query-chaining that may be needed to provide folks
with an experience such as they're used to on the Twitter Web site
with the bells and whistles - are there any plans to increase the rate
limit for applications?

I should just add: this is in no way a whiny post at the rate limiting
that's currently in effect. We're not hearing of Socialite hitting the
rate limit a great deal (as we're deliberately refreshing Lists every
third refresh to preserve API calls) - I'm just posting to see what
the Twitter API team's thoughts are :)

Cheers,

Nik

---
Nik Fletcher
Support / QA Manager
Realmac Software


[twitter-dev] Ping bot now available

2009-12-08 Thread Fabien Penso
Hi everyone,

I looked for a few minutes without finding a ping bot account on twitter.

So here it goes http://twitter.com/pingpongbot using the streaming
API, therefor should be fast. Works on public replies for now, suggest
ideas if you wish.

...


[twitter-dev] Re: Adding member to list does nothing

2009-12-08 Thread CodeWarden
Thanks Ed!  Must of really run a-muck!

-Paul

On Dec 8, 12:27 am, Ed Costello  wrote:
> 6444795764 does not appear to be a valid twitter user id / id number, nor does
> 2074698.
> The only list you appear to have is "my-uber-peeps" with id "2074438".
>
> So, try using a valid user id number and correct the list id to 2074438 and
> see if that works.
> --
> -ed costello
> @epc / +13474080372