[twitter-dev] Fetching only german status updates

2009-06-01 Thread Gerald Bäck
Is there a way to get via the search or the streaming API all german tweets. 
Currently or application is strictly limited to german Tweets which contain 
also http, but we woul like to expand it to all german tweets.
 
thx Gerald


[twitter-dev] Re: request_token gives "Failed to validate oauth signature and token"

2009-06-01 Thread Manoj G

I am also looking for the answer on the same.

On Jun 1, 7:17 am, fastest963  wrote:
> I'm getting the same thing. Looks like Twitter is having some problems
> updating its OAuth applications with any new registrations or consumer
> keys.
>
> On May 31, 4:00 pm, kollynews  wrote:
>
>
>
> > I am trying to run a sample application (http://github.com/abraham/
> > twitteroauth) but i am getting 401 error during request_token phase.
> > It says "Failed to validate oauth signature and token". Can anybody
> > help me in this.
>
> > this is what i am accessing:
>
> >https://twitter.com/oauth/request_token?oauth_version=1.0&oauth_nonce...
>
> > anything wrong in the headers ?


[twitter-dev] Creating Accounts

2009-06-01 Thread code-or-die

Hi,

is there a way to create an account via the API?

I know, there is a captcha!
But I don't want to create accounts automatically, but I want to
redesign the sign-up formula.

Thanks for any clues,

Tom


[twitter-dev] Re: Enable ability to block apps via Twitter or the API

2009-06-01 Thread Swaroop

We have "source blocking" built into our service :)

On Jun 1, 3:52 am, Jesse Stay  wrote:
> Not going to name names, but there are a few really noisy apps out there
> right now.  It would be really nice if, via either the API (my preference as
> it would be less work on your part and fits well with my app), or the UI,
> you enabled users to block receiving Tweets generated from specific apps.
>  This would then punish the app developers for creating spammy apps and not
> the users themselves for just using what was put out there, making it much
> less of a mess to control.  Facebook does this, as does FriendFeed.  Any
> chance you could enable this (please???) for Twitter?
>
> Thanks,
>
> @Jesse


[twitter-dev] Re: Mentions with since_id is worthless - proposed fix

2009-06-01 Thread Sherif

I agree with you on the reverse order, but slightly disagree on the
since_id statement (yes, you did grab my attention from the subject
line!)

I do find since_id very helpful when using the search API.

Very often I would load tweets for a given search string. As I start
loading these tweets, I grab the first tweet, and make that my last
since_id. Next time my job runs, it resumes from the last since_id and
iterates over the results. I find this a simple  and effective method.

It could be improved however using reverse order. Not just for the
reasons you specified, but also for error handling. For example, if
you use my logic above and have the following tweet_id's

1, 2, 3, 4

I start my script, and start loading the tweets. It starts from 4, and
sets the last since_id=4, then loads, 3, 2, and 1. What happens if
after loading 3 there is an API error? (hypothetical) The developer
would then need to manually roll-back their batch if they are using
the since_id method. If this was done in reverse order, it would be
simpler, you would not need to do anything but make the last loaded
tweet the since_id (instead of the first)...

And yes didn't that sound confusing?! :-)
Sherif


On May 30, 8:42 pm, Remy Sharp  wrote:
> Sorry for a slightly gaming subject line, but I've just worked out
> that the 'since_id' parameter is worthless in the mentions api call.
> It may also be the case in every other API call - but let me explain.
>
> The only time that I can think that you need to use the since_id param
> is if you want to start looking at tweets from that point in time
> onwards.
>
> The API supports a count param, so technically I may only be
> interested in the first tweet since X id:
>
> If the tweet with the ID 1800200012 was posted 15 days ago (and I've
> had lot of mentions since) - I would expect to use the following call
> to get the mentions after that particular tweet:
>
> http://twitter.com/statuses/mentions.xml?since_id=1800200012&count=1
>
> However, since the API call does all the mentions up to "now" - it
> gives me the my latest tweet.
>
> If there was a way to work backwards, i.e. in reverse order then it
> would solve this issue in one fell swoop.
>
> Possibly using:
>
> http://twitter.com/statuses/mentions.xml?since_id=1800200012&count=1&;...
>
> This would be really useful for the personal timeline too, since I
> could track the first tweet when I got on holiday, and then follow
> each tweet since without having to depend on the search API (which is
> still limited to 3 weeks of data).
>
> What do you think?  Should/could this be made in to feature?
>
> Cheers
>
> --
>
> Remy Sharp


[twitter-dev] Re: Sign in with Twitter

2009-06-01 Thread Matt Sanford


Hi Romeo,

In order to make 'Sign in with Twitter' secure we do indeed now  
return the request token, and you can then exchange that for an access  
token. There is a ticket in place [1] to update the documentation to  
match.


Thanks;
 – Matt Sanford / @mzsanford
 Twitter Dev

[1] - http://code.google.com/p/twitter-api/issues/detail?id=488

On May 31, 2009, at 12:12 AM, Romeo Olympia wrote:



Hi all,

So it looks like that the token being returned to the callback from
oauth/authenticate is now the same request token we sent. Can someone
please confirm this? This is the last message I found on the topic.

If this is the case, how are we supposed to proceed? Should we
exchange the request token for a new access token every time "Sign in
with Twitter" happens?

Thanks,

Romeo


On Apr 17, 9:31 pm, Matt Sanford  wrote:

Hi all,

 This behavior (i.e. which token is returned) is likely to change
soon. Once again, stay tuned for updates.

— Matt

On Apr 17, 2009, at 01:02 AM, Abraham Williams wrote:


The oauth_token returned from oauth/authenticate is the key from the
users access tokens. as long as you store the access tokens you can
match the returned oauth_token with what is in your database.



On Fri, Apr 17, 2009 at 01:35, John Kristian 
wrote:



I'm having trouble using /oauth/authenticate, too.  After
authenticating, Twitter redirects back to my consumer with a  
different

oauth_token than the one I sent to initiate authentication.  Twitter
APIs don't accept either token.  Sending the original request token
to /oauth/access_token elicits HTTP 401 with an XML error "Invalid /
expired Token".  Sending the second callback token elicits HTTP 500
Internal Server Error with an HTML body entitled "Twitter / Error".
When either token is used as an access token, Twitter responds with
401.  The original request token elicits an XML error "Invalid /
expired Token"; the second token elicits "Failed to validate oauth
signature or token".



For signing I used the token secret associated with the original
request token.  The user has already given permission to this
consumer.



Help?



On Apr 16, 12:25 pm, Dossy Shiobara  wrote:

I just tried out the oauth/authenticate - I supplied a

RequestToken and

it redirected back to my callback URL with an AccessToken ... but,
what's the token secret for this AccessToken?  I only know the

secret

for the RequestToken I sent it ... Is the token secret the same

for the

AccessToken I get back?



--
Abraham Williams |http://the.hackerconundrum.com
Hacker |http://abrah.am|http://twitter.com/abraham
Web608 | Community Evangelist |http://web608.org
This email is: [ ] blogable [x] ask first [ ] private.
Sent from Madison, Wisconsin, United States




[twitter-dev] Re: Search API

2009-06-01 Thread Matt Sanford


Hi there,

To get more results you'll need to paginate. We cannot offer an  
API that returns thousands (or millions) or results in one request.


Thanks;
 – Matt Sanford / @mzsanford
 Twitter Dev

On May 31, 2009, at 5:53 PM, Joseph wrote:



If I do a search the API, is there an easier way to get all output,
than doing multiple calls, each specifying a page number?




[twitter-dev] Is it possible to call API directly from flash

2009-06-01 Thread guytom

Hi,

This is a newby question - do we have to use a proxy server to call
the twitter REST API from a flash client?

Looking at the crossdomain it seems like we do, why?

Does anyone know if a simple apache reverse proxy configuration will
do the job?

Thanks!


[twitter-dev] Reg. Get the New Twitters to follow

2009-06-01 Thread kkp

Hello All,

I want to fetch the twitter accounts which i need to follow
based on a particular twitter user's followers / followings directly.
When i search a twitter account say(twitter) and i want to follow the
specified twitter id's followers / followings where there is no
friendship exists among the specified account and the one which is
searching. So that they can directly follow the other user's
followers / followings without rechecking for the freindship exists
among each of the users which we get.

Here is an example in detail:

I am a user with twitter account id as "searcher" and i want to follow
a particular twitter id's(say "searchable") followers / followings. If
i've already followed some of the users whom "searchable" is
followed / followed by then those must not be included in getting
the results which i need to follow.

I am using the following method to get the friends list.
http://twitter.com/statuses/friends.xml?screen_name=searchable
this method is returning all the followings who are also followed by
me.
I want to get the friends list  who i am not following. If i get all
the results i have to check "friendships/exists" explicitly the  for
every user. this will waste a call and consume time also.

How can i get the twitters info whom i am not following using
"statuses/friends" and "statuses/followers" ?

Is there  other methods in API to get this list?

Any help will be appreciated.

Thanks & Regards
kkp


[twitter-dev] Re: Creating Accounts

2009-06-01 Thread Abraham Williams
Nope. There is not. You could share what you don't like about the signup
process at http://help.twitter.com and maybe Twitter will fix it.

On Mon, Jun 1, 2009 at 05:50, code-or-die wrote:

>
> Hi,
>
> is there a way to create an account via the API?
>
> I know, there is a captcha!
> But I don't want to create accounts automatically, but I want to
> redesign the sign-up formula.
>
> Thanks for any clues,
>
> Tom
>



-- 
Abraham Williams | http://the.hackerconundrum.com
Hacker | http://abrah.am | http://twitter.com/abraham
Project | http://fireeagle.labs.poseurtech.com
This email is: [ ] blogable [x] ask first [ ] private.


[twitter-dev] statuses/friends returning 500 error

2009-06-01 Thread Trevor Livingston


If I make the call http://twitter.com/statuses/friends.xml or friends/
username.xml (or json format), I get a 500 error, but only with one
username. If I test against tlivings, 500 error; anyone else no
problem.

Is this indicative of an api limit? It happens from my office as well
as my home.

Thanks.


[twitter-dev] Re: statuses/friends returning 500 error

2009-06-01 Thread Matt Sanford


Hi there,

The rate limit returns HTTP 400, as stated in the documentation  
[1]. A 500 indicates some server-side error so knowing what user this  
is for might help us find the root cause.


Thanks;
 – Matt Sanford / @mzsanford
 Twitter Dev

[1] - http://apiwiki.twitter.com/Rate-limiting

On Jun 1, 2009, at 8:37 AM, Trevor Livingston wrote:




If I make the call http://twitter.com/statuses/friends.xml or friends/
username.xml (or json format), I get a 500 error, but only with one
username. If I test against tlivings, 500 error; anyone else no
problem.

Is this indicative of an api limit? It happens from my office as well
as my home.

Thanks.




[twitter-dev] Re: Bulk id -> screen_name resolution.

2009-06-01 Thread Nick Arnett
On Sun, May 31, 2009 at 3:57 PM, Stuart  wrote:

>
> Much as I respect Twitter and the great people who work there, I don't
> buy that this would place too much demand on their servers. They
> already use Memcached extensively, and this would be a pretty simple
> addition to that data store.


For that very reason, I'm not sure it makes sense for third parties to
collaborate on a single-purpose distributed store.  There are user/account
properties that Twitter won't implement, at least not until there's a lot of
demonstrated value.  In other words, the developer community could
collaborate on problems that have marginal value to Twitter in the short
run.

Nick


[twitter-dev] Re: Change Tracker

2009-06-01 Thread Nick Arnett
On Sun, May 31, 2009 at 7:22 PM, TechRavingMad wrote:

>
> I was wondering if there would be any way that Twitter could publish
> an RSS feed of when certain profile items are changed?


See http://code.google.com/p/twitter-api/issues/detail?id=334 for the bad
news about this.  Twitter doesn't seem to see this as an actual issue,
unfortunately.

I don't know how to vote for getting it out of the WontFix pile.

Nick


[twitter-dev] Re: statuses/friends returning 500 error

2009-06-01 Thread Trevor Livingston


I said "tlivings" in the original message. That is the only user that
seems to fail.

Thanks!

Trevor.

On Jun 1, 10:49 am, Matt Sanford  wrote:
> Hi there,
>
>      The rate limit returns HTTP 400, as stated in the documentation  
> [1]. A 500 indicates some server-side error so knowing what user this  
> is for might help us find the root cause.
>
> Thanks;
>   – Matt Sanford / @mzsanford
>       Twitter Dev
>
> [1] -http://apiwiki.twitter.com/Rate-limiting
>
> On Jun 1, 2009, at 8:37 AM, Trevor Livingston wrote:
>
>
>
> > If I make the callhttp://twitter.com/statuses/friends.xmlor friends/
> > username.xml (or json format), I get a 500 error, but only with one
> > username. If I test against tlivings, 500 error; anyone else no
> > problem.
>
> > Is this indicative of an api limit? It happens from my office as well
> > as my home.
>
> > Thanks.


[twitter-dev] Re: Is it possible to call API directly from flash

2009-06-01 Thread Steve Brunton

On Mon, Jun 1, 2009 at 10:30 AM, guytom wrote:
>
> Hi,
>
> This is a newby question - do we have to use a proxy server to call
> the twitter REST API from a flash client?
>
> Looking at the crossdomain it seems like we do, why?
>
> Does anyone know if a simple apache reverse proxy configuration will
> do the job?
>

A simple reverse-proxy config for a webserver works just fine. I
mocked up something for work using the Search API using a
reserver-proxy config .. Make all the Ajax requests to
${original-source}/proxy/twitter/search and it works like a champ.

NameTrans fn="map" from="/proxy/twitter/search"
name="reverse-proxy-/proxy/twitter/search" to="http:/"


Service fn="proxy-retrieve" method="*"



ObjectType fn="http-client-config" keep-alive="false"
ObjectType fn="block-ip"
Route fn="set-origin-server" rewrite-host="true"
server="http://search.twitter.com/";


I had to put the "block-ip" in there because something on the Twitter
side has a weird config and if I sent the X-orig-IP header or whatever
it is the twitter side returned a 500.

-steve


[twitter-dev] Re: How to count to 140: or, characters vs. bytes vs. entities, third strike

2009-06-01 Thread Abraham Williams
if i worked at Twitter and was dealing with issues like unplanned down time
[1]. Clarifying if users can post 140 bytes or 141 bytes is the last thing I
would be dealing with. Just play it safe and round down. Or run your own
laconi.ca server where you can make your own esoteric rules.

On Mon, Jun 1, 2009 at 12:07, leoboiko  wrote:

>
> For the record, today my bug report about these l10n-related issues
> was closed with a generic message that amounted to RTFM (even though
> the bug report was about TFM in question not having the information!)
>
> I am very disappointed with the way no one at twitter.com seems to
> care, and from now on give up on trying to make sense of the encoding
> mess.
>



-- 
Abraham Williams | http://the.hackerconundrum.com
Hacker | http://abrah.am | http://twitter.com/abraham
Project | http://fireeagle.labs.poseurtech.com
This email is: [ ] blogable [x] ask first [ ] private.
Sent from Madison, Wisconsin, United States


[twitter-dev] Re: Is it possible to call API directly from flash

2009-06-01 Thread guytom

Thanks for the response, did you also try it from a flash client? not
that there should be much difference

On Jun 1, 7:47 pm, Steve Brunton  wrote:
> On Mon, Jun 1, 2009 at 10:30 AM, guytom wrote:
>
> > Hi,
>
> > This is a newby question - do we have to use a proxy server to call
> > the twitter REST API from a flash client?
>
> > Looking at the crossdomain it seems like we do, why?
>
> > Does anyone know if a simple apache reverse proxy configuration will
> > do the job?
>
> A simple reverse-proxy config for a webserver works just fine. I
> mocked up something for work using the Search API using a
> reserver-proxy config .. Make all the Ajax requests to
> ${original-source}/proxy/twitter/search and it works like a champ.
>
> NameTrans fn="map" from="/proxy/twitter/search"
> name="reverse-proxy-/proxy/twitter/search" to="http:/"
>
> 
> Service fn="proxy-retrieve" method="*"
> 
>
> 
> ObjectType fn="http-client-config" keep-alive="false"
> ObjectType fn="block-ip"
> Route fn="set-origin-server" rewrite-host="true"
> server="http://search.twitter.com/";
> 
>
> I had to put the "block-ip" in there because something on the Twitter
> side has a weird config and if I sent the X-orig-IP header or whatever
> it is the twitter side returned a 500.
>
> -steve


[twitter-dev] Search API results return more info

2009-06-01 Thread Coderanger

The search results already have "profile_image_url" which is the
"from_user" profile image, but could the "to_user" have its profile
image url included as well. This avoids me making multiple calls and
hitting your server unnnecessarily.

It would clearly only be included/filled when there is a "to_user". I
think the bandwidth overhead would be minimal, if not it could be
added thru an extra parameter "&extended_user_data=1" or
"&include_to_user_profile" so it could be selectively used if
required.

This addition enables me (http://coderanger.com/twitcher) or other
apps to properly attribute the search results like a normal user
status.


[twitter-dev] Re: How to count to 140: or, characters vs. bytes vs. entities, third strike

2009-06-01 Thread Abraham Williams
[1] http://status.twitter.com/post/115523264/unscheduled-downtime

On Mon, Jun 1, 2009 at 12:16, Abraham Williams <4bra...@gmail.com> wrote:

> if i worked at Twitter and was dealing with issues like unplanned down time
> [1]. Clarifying if users can post 140 bytes or 141 bytes is the last thing I
> would be dealing with. Just play it safe and round down. Or run your own
> laconi.ca server where you can make your own esoteric rules.
>
> On Mon, Jun 1, 2009 at 12:07, leoboiko  wrote:
>
>>
>> For the record, today my bug report about these l10n-related issues
>> was closed with a generic message that amounted to RTFM (even though
>> the bug report was about TFM in question not having the information!)
>>
>> I am very disappointed with the way no one at twitter.com seems to
>> care, and from now on give up on trying to make sense of the encoding
>> mess.
>>
>
>
>
> --
> Abraham Williams | http://the.hackerconundrum.com
> Hacker | http://abrah.am | http://twitter.com/abraham
> Project | http://fireeagle.labs.poseurtech.com
> This email is: [ ] blogable [x] ask first [ ] private.
> Sent from Madison, Wisconsin, United States




-- 
Abraham Williams | http://the.hackerconundrum.com
Hacker | http://abrah.am | http://twitter.com/abraham
Project | http://fireeagle.labs.poseurtech.com
This email is: [ ] blogable [x] ask first [ ] private.
Sent from Madison, Wisconsin, United States


[twitter-dev] Re: How to count to 140: or, characters vs. bytes vs. entities, third strike

2009-06-01 Thread leoboiko

For the record, today my bug report about these l10n-related issues
was closed with a generic message that amounted to RTFM (even though
the bug report was about TFM in question not having the information!)

I am very disappointed with the way no one at twitter.com seems to
care, and from now on give up on trying to make sense of the encoding
mess.


[twitter-dev] Request for Developers/Libraries Additions

2009-06-01 Thread Steven Degutis

Hello. My name is Steven Degutis and I'm writing a program which uses
Twitter.com's API. I've also written a Cocoa library that interacts
with Twitter's RESTful API. My request is that I be added to the
http://apiwiki.twitter.com/Developers page and my library be added to
http://apiwiki.twitter.com/Libraries#ObjectiveC/Cocoa

The information is as follows:

For http://apiwiki.twitter.com/Developers

Steven Degutis
* Twitter: sdegutis
* URL: www.degutis.org
iPhone and Mac developer (Cocoa and Cocoa Touch). Creator of the
SDSocialNetworking Cocoa (and Touch) library which utilizes
Twitter.com's API, among that of other social networking websites.
Also authors an as-of-yet-unreleased Mac application using this
library.

For http://apiwiki.twitter.com/Libraries#ObjectiveC/Cocoa

SDSocialNetworking (http://github.com/sdegutis/SocialNetworkManager/
tree/master) by Steven Degutis. Integrate support for social
networking sites (like Twitter, identica, friendfeed, etc.) into your
Cocoa app.


[twitter-dev] Re: statuses/friends returning 500 error

2009-06-01 Thread Trevor Livingston


Seems to be working now. Would like to know why this might have been
failing though...

On Jun 1, 11:28 am, Trevor  Livingston  wrote:
> I said "tlivings" in the original message. That is the only user that
> seems to fail.
>
> Thanks!
>
> Trevor.
>
> On Jun 1, 10:49 am, Matt Sanford  wrote:
>
> > Hi there,
>
> >      The rate limit returns HTTP 400, as stated in the documentation  
> > [1]. A 500 indicates some server-side error so knowing what user this  
> > is for might help us find the root cause.
>
> > Thanks;
> >   – Matt Sanford / @mzsanford
> >       Twitter Dev
>
> > [1] -http://apiwiki.twitter.com/Rate-limiting
>
> > On Jun 1, 2009, at 8:37 AM, Trevor Livingston wrote:
>
> > > If I make the callhttp://twitter.com/statuses/friends.xmlorfriends/
> > > username.xml (or json format), I get a 500 error, but only with one
> > > username. If I test against tlivings, 500 error; anyone else no
> > > problem.
>
> > > Is this indicative of an api limit? It happens from my office as well
> > > as my home.
>
> > > Thanks.


[twitter-dev] Re: statuses/friends returning 500 error

2009-06-01 Thread Doug Williams
We're continuing to fight with the limits of MySQL scalability. This is
contributing to problems with user related data such as social graph lists,
which is resulting in 500s. Operations is working hard and focusing on the
fix.
Thanks,
Doug
--

Doug Williams
Twitter Platform Support
http://twitter.com/dougw




On Mon, Jun 1, 2009 at 11:02 AM, Trevor Livingston wrote:

>
>
> Seems to be working now. Would like to know why this might have been
> failing though...
>
> On Jun 1, 11:28 am, Trevor  Livingston  wrote:
> > I said "tlivings" in the original message. That is the only user that
> > seems to fail.
> >
> > Thanks!
> >
> > Trevor.
> >
> > On Jun 1, 10:49 am, Matt Sanford  wrote:
> >
> > > Hi there,
> >
> > >  The rate limit returns HTTP 400, as stated in the documentation
> > > [1]. A 500 indicates some server-side error so knowing what user this
> > > is for might help us find the root cause.
> >
> > > Thanks;
> > >   – Matt Sanford / @mzsanford
> > >   Twitter Dev
> >
> > > [1] -http://apiwiki.twitter.com/Rate-limiting
> >
> > > On Jun 1, 2009, at 8:37 AM, Trevor Livingston wrote:
> >
> > > > If I make the callhttp://twitter.com/statuses/friends.xmlorfriends/
> > > > username.xml (or json format), I get a 500 error, but only with one
> > > > username. If I test against tlivings, 500 error; anyone else no
> > > > problem.
> >
> > > > Is this indicative of an api limit? It happens from my office as well
> > > > as my home.
> >
> > > > Thanks.
>


[twitter-dev] Re: How to count to 140: or, characters vs. bytes vs. entities, third strike

2009-06-01 Thread Doug Williams
Leo,This has been covered many times before. It's 140 UTF-8 characters.
Please search the archives of this group for the complete conversation,
including Twitter employee participation. We certainly care, but we are
still a small team who need people to help themselves as much as possible.
As Abraham has indicated, we can't answer the same questions repeatedly or
we'd never move forward. Our silence is normally an indication that you
don't need our help and that the information is already available.

Cheers,
Doug


Thanks,
Doug
--

Doug Williams
Twitter Platform Support
http://twitter.com/dougw




On Mon, Jun 1, 2009 at 10:28 AM, Abraham Williams <4bra...@gmail.com> wrote:

> [1] http://status.twitter.com/post/115523264/unscheduled-downtime
>
>
> On Mon, Jun 1, 2009 at 12:16, Abraham Williams <4bra...@gmail.com> wrote:
>
>> if i worked at Twitter and was dealing with issues like unplanned down
>> time [1]. Clarifying if users can post 140 bytes or 141 bytes is the last
>> thing I would be dealing with. Just play it safe and round down. Or run your
>> own laconi.ca server where you can make your own esoteric rules.
>>
>> On Mon, Jun 1, 2009 at 12:07, leoboiko  wrote:
>>
>>>
>>> For the record, today my bug report about these l10n-related issues
>>> was closed with a generic message that amounted to RTFM (even though
>>> the bug report was about TFM in question not having the information!)
>>>
>>> I am very disappointed with the way no one at twitter.com seems to
>>> care, and from now on give up on trying to make sense of the encoding
>>> mess.
>>>
>>
>>
>>
>> --
>> Abraham Williams | http://the.hackerconundrum.com
>> Hacker | http://abrah.am | http://twitter.com/abraham
>> Project | http://fireeagle.labs.poseurtech.com
>> This email is: [ ] blogable [x] ask first [ ] private.
>> Sent from Madison, Wisconsin, United States
>
>
>
>
> --
> Abraham Williams | http://the.hackerconundrum.com
> Hacker | http://abrah.am | http://twitter.com/abraham
> Project | http://fireeagle.labs.poseurtech.com
> This email is: [ ] blogable [x] ask first [ ] private.
> Sent from Madison, Wisconsin, United States
>


[twitter-dev] Twitter: Social Networking or Social Bookmarking site?

2009-06-01 Thread Neicole

You might be interested in this look at the issue via the demographics
of Twitter users. Things to think about when considering useful apps
to create. http://nmc.itdevworks.com/


[twitter-dev] Re: Request for Developers/Libraries Additions

2009-06-01 Thread Steven Degutis

One last edit, sorry. The last line in the previous email should be:

"Integrate support for social networking sites (like Twitter,
identica, friendfeed, etc.) into your Mac (Cocoa) or iPhone app."

Sorry about that!

Cheers,
-Steven Degutis

On Jun 1, 12:55 pm, Steven Degutis  wrote:
> Hello. My name is Steven Degutis and I'm writing a program which uses
> Twitter.com's API. I've also written a Cocoa library that interacts
> with Twitter's RESTful API. My request is that I be added to 
> thehttp://apiwiki.twitter.com/Developerspage and my library be added 
> tohttp://apiwiki.twitter.com/Libraries#ObjectiveC/Cocoa
>
> The information is as follows:
>
> Forhttp://apiwiki.twitter.com/Developers
>
> Steven Degutis
> * Twitter: sdegutis
> * URL:www.degutis.org
> iPhone and Mac developer (Cocoa and Cocoa Touch). Creator of the
> SDSocialNetworking Cocoa (and Touch) library which utilizes
> Twitter.com's API, among that of other social networking websites.
> Also authors an as-of-yet-unreleased Mac application using this
> library.
>
> Forhttp://apiwiki.twitter.com/Libraries#ObjectiveC/Cocoa
>
> SDSocialNetworking (http://github.com/sdegutis/SocialNetworkManager/
> tree/master) by Steven Degutis. Integrate support for social
> networking sites (like Twitter, identica, friendfeed, etc.) into your
> Cocoa app.


[twitter-dev] Re: statuses/friends returning 500 error

2009-06-01 Thread Trevor Livingston


Thanks!

On Jun 1, 1:12 pm, Doug Williams  wrote:
> We're continuing to fight with the limits of MySQL scalability. This is
> contributing to problems with user related data such as social graph lists,
> which is resulting in 500s. Operations is working hard and focusing on the
> fix.
> Thanks,
> Doug
> --
>
> Doug Williams
> Twitter Platform Supporthttp://twitter.com/dougw
>
> On Mon, Jun 1, 2009 at 11:02 AM, Trevor Livingston wrote:
>
>
>
> > Seems to be working now. Would like to know why this might have been
> > failing though...
>
> > On Jun 1, 11:28 am, Trevor  Livingston  wrote:
> > > I said "tlivings" in the original message. That is the only user that
> > > seems to fail.
>
> > > Thanks!
>
> > > Trevor.
>
> > > On Jun 1, 10:49 am, Matt Sanford  wrote:
>
> > > > Hi there,
>
> > > >      The rate limit returns HTTP 400, as stated in the documentation
> > > > [1]. A 500 indicates some server-side error so knowing what user this
> > > > is for might help us find the root cause.
>
> > > > Thanks;
> > > >   – Matt Sanford / @mzsanford
> > > >       Twitter Dev
>
> > > > [1] -http://apiwiki.twitter.com/Rate-limiting
>
> > > > On Jun 1, 2009, at 8:37 AM, Trevor Livingston wrote:
>
> > > > > If I make the callhttp://twitter.com/statuses/friends.xmlorfriends/
> > > > > username.xml (or json format), I get a 500 error, but only with one
> > > > > username. If I test against tlivings, 500 error; anyone else no
> > > > > problem.
>
> > > > > Is this indicative of an api limit? It happens from my office as well
> > > > > as my home.
>
> > > > > Thanks.


[twitter-dev] Re: Bulk id -> screen_name resolution.

2009-06-01 Thread Doug Williams
There is currently nothing in our TOS preventing this type of project from
developing. However, we are writing our Terms for the API and at this time I
cannot speak of how a service redistributing our data will be classified.
So, proceed as you will, but be warned that we may have to have a discussion
down the road when the API Terms of Service better defines our relationship
with developers.
Thanks,
Doug
--

Doug Williams
Twitter Platform Support
http://twitter.com/dougw




On Mon, Jun 1, 2009 at 8:52 AM, Nick Arnett  wrote:

>
>
> On Sun, May 31, 2009 at 3:57 PM, Stuart  wrote:
>
>>
>> Much as I respect Twitter and the great people who work there, I don't
>> buy that this would place too much demand on their servers. They
>> already use Memcached extensively, and this would be a pretty simple
>> addition to that data store.
>
>
> For that very reason, I'm not sure it makes sense for third parties to
> collaborate on a single-purpose distributed store.  There are user/account
> properties that Twitter won't implement, at least not until there's a lot of
> demonstrated value.  In other words, the developer community could
> collaborate on problems that have marginal value to Twitter in the short
> run.
>
> Nick
>
>


[twitter-dev] Re: Bulk id -> screen_name resolution.

2009-06-01 Thread Dossy Shiobara


On 6/1/09 6:59 PM, Doug Williams wrote:

There is currently nothing in our TOS preventing this type of project
from developing. However, we are writing our Terms for the API and at
this time I cannot speak of how a service redistributing our data will
be classified.

So, proceed as you will, but be warned that we may have to have a
discussion down the road when the API Terms of Service better defines
our relationship with developers.


Doug, any kind of rough timeline for such an API TOS?  Weeks?  Months? 
Years?


--
Dossy Shiobara  | do...@panoptic.com | http://dossy.org/
Panoptic Computer Network   | http://panoptic.com/
  "He realized the fastest way to change is to laugh at your own
folly -- then you can let go and quickly move on." (p. 70)


[twitter-dev] Re: Bulk id -> screen_name resolution.

2009-06-01 Thread Doug Williams
Dossy,Within the next few months.

Thanks,
Doug
--

Doug Williams
Twitter Platform Support
http://twitter.com/dougw


On Mon, Jun 1, 2009 at 4:05 PM, Dossy Shiobara  wrote:

>
> On 6/1/09 6:59 PM, Doug Williams wrote:
>
>> There is currently nothing in our TOS preventing this type of project
>> from developing. However, we are writing our Terms for the API and at
>> this time I cannot speak of how a service redistributing our data will
>> be classified.
>>
>> So, proceed as you will, but be warned that we may have to have a
>> discussion down the road when the API Terms of Service better defines
>> our relationship with developers.
>>
>
> Doug, any kind of rough timeline for such an API TOS?  Weeks?  Months?
> Years?
>
> --
> Dossy Shiobara  | do...@panoptic.com | http://dossy.org/
>
> Panoptic Computer Network   | http://panoptic.com/
>  "He realized the fastest way to change is to laugh at your own
>folly -- then you can let go and quickly move on." (p. 70)
>


[twitter-dev] Re: statuses/friends returning 500 error

2009-06-01 Thread RC

Can this also explain why on a few accounts I'm seeing a discrepancy
between the number of ids in the following JSON versus what Twitter is
showing when you see the account on the web?  I have at least two
accounts that seem to be hung up in the 2,000 following/follower
hurdle.  The JSON array on one account has 1940 following while
Twitter says I'm following 2,001.  Another account says I'm following
2,026 while the JSON data for following only returns 1,899 entries.

Randy Cox

On Jun 1, 12:12 pm, Doug Williams  wrote:
> We're continuing to fight with the limits of MySQL scalability. This is
> contributing to problems with user related data such as social graph lists,
> which is resulting in 500s. Operations is working hard and focusing on the
> fix.
> Thanks,
> Doug
> --
>
> Doug Williams
> Twitter Platform Supporthttp://twitter.com/dougw
>
> On Mon, Jun 1, 2009 at 11:02 AM, Trevor Livingston wrote:
>


[twitter-dev] Re: request_token gives "Failed to validate oauth signature and token"

2009-06-01 Thread Adam Varga

I reported this error here...
http://code.google.com/p/twitter-api/issues/detail?id=639&colspec=ID%20Stars%20Type%20Status%20Priority%20Owner%20Summary%20Opened%20Modified%20Component

Hopefully Twitter takes care of this soon.

On Jun 1, 7:06 am, மனோஜ் (Manoj G)  wrote:
> I am also looking for the answer on the same.
>
> On Jun 1, 7:17 am, fastest963  wrote:
>
> > I'm getting the same thing. Looks like Twitter is having some problems
> > updating its OAuth applications with any new registrations or consumer
> > keys.
>
> > On May 31, 4:00 pm, kollynews  wrote:
>
> > > I am trying to run a sample application (http://github.com/abraham/
> > > twitteroauth) but i am getting 401 error during request_token phase.
> > > It says "Failed to validate oauth signature and token". Can anybody
> > > help me in this.
>
> > > this is what i am accessing:
>
> > >https://twitter.com/oauth/request_token?oauth_version=1.0&oauth_nonce...
>
> > > anything wrong in the headers ?
>
>


[twitter-dev] SSL error on the Sign

2009-06-01 Thread Dave

In IE https://twitter.com/oauth/authorize generates an SSL warning
that happens after you click on the sign in with twitter link.  The
warning says "Do you want to view only the web page content that was
delivered securely? This web page contains content that will not be
delivered using a secure HTTPS connection, which could compromise the
security of the entire web page."

The reason the error occurs is because twitter is referring to a
couple of CSS and javascript files with http instead of https on a
secure page.  It's no big deal from a technical or security stand
point because who really cares if a JS or CSS file is intercepted in
plain text but non-technical users will not understand what the
warning means and may be scared by it. I'm hoping someone at twitter
will correct this.


[twitter-dev] Not Reveiving Follow EMails

2009-06-01 Thread Dale Cook

Our application (glu) relies on follow notifications so that we can
follow back anyone that follows us. we're now only receiving follow
notifications intermitently.

If we use one of our test accounts, that already follows glu, unfollow
them,  log out, remove them from our follow list on the glu account,
log back in with the test account and then follow glu again we do not
recieve the follow email, or any email of the kind.

We are receiving direct message mails though.

Has the policy on follow emails changed recently and we're just not
aware of it, or is something up?

Dale


[twitter-dev] oauth not working in IE

2009-06-01 Thread Dave

Did something just change like around 9:30PM Eastern. The oauth
authorization was working great in IE but all the sudden it stopped.
It appears twitter is not returning with the auth token or something
I'm just get bounce around a little then it settles on this error
message.

Woah there!
This page requires some information that was not provided. Please
return to the site that sent you to this page and try again … it was
probably an honest mistake.

It's still working fine in FF and I never say it's not my code but
considering this example site (http://twitter.abrah.am/) I found in
twitter's documentation doesn't work anymore either in IE I'm gonna
have to say it's not my code.


[twitter-dev] Reg: Follow/Un-Follow Multiple users

2009-06-01 Thread kkp

Hi,

I want to follow/unfollow multiple users in one web request.
At present i am following/un follow users individually by sending each
user. It is taking long time and waste calls. If i have 100 users to
follow/un follow i am sending 100 requests , this will take a long
time process and taking more time and take 100 calls.

I have another problem...
If i want to unfollow "unmutuals" .Is there any method to get the
unmutualls?
Present i am using the following scenario ..I have 100 followings and
i want to unfollow the "Un mutauls". using my application. i get the
100 users and checking the frienship is exists or not from following
user to me using "friendships/exists " API method. if friendship is
not exists i unfollow users using the API method "friendships/destroy
". So in this way i consuming 200 calls . 100 calls for "friendships/
exists" and 100 calls for "friendships/destroy". so many calls are
taking and application will also take too long time to perform this
operation. How can wee overcome this.

So my questions are ..
1. Is there any way(methods) to " follow/unfollow" users as bulk ?
2. Is there any methods are available to get the "Un mutuals" from
following list?

thanks & regards
kkp




[twitter-dev] Re: Reg: Follow/Un-Follow Multiple users

2009-06-01 Thread Abraham Williams
1) no.

2) Use the social graph method to get the friends and followers ids then
unfollow anybody that is not in both arrays.

On Tue, Jun 2, 2009 at 01:29, kkp <33spa...@gmail.com> wrote:

>
> Hi,
>
> I want to follow/unfollow multiple users in one web request.
> At present i am following/un follow users individually by sending each
> user. It is taking long time and waste calls. If i have 100 users to
> follow/un follow i am sending 100 requests , this will take a long
> time process and taking more time and take 100 calls.
>
> I have another problem...
> If i want to unfollow "unmutuals" .Is there any method to get the
> unmutualls?
> Present i am using the following scenario ..I have 100 followings and
> i want to unfollow the "Un mutauls". using my application. i get the
> 100 users and checking the frienship is exists or not from following
> user to me using "friendships/exists " API method. if friendship is
> not exists i unfollow users using the API method "friendships/destroy
> ". So in this way i consuming 200 calls . 100 calls for "friendships/
> exists" and 100 calls for "friendships/destroy". so many calls are
> taking and application will also take too long time to perform this
> operation. How can wee overcome this.
>
> So my questions are ..
> 1. Is there any way(methods) to " follow/unfollow" users as bulk ?
> 2. Is there any methods are available to get the "Un mutuals" from
> following list?
>
> thanks & regards
> kkp
>
>
>


-- 
Abraham Williams | http://the.hackerconundrum.com
Hacker | http://abrah.am | http://twitter.com/abraham
Project | http://fireeagle.labs.poseurtech.com
This email is: [ ] blogable [x] ask first [ ] private.