[twitter-dev] Re: Dev Portal Login

2010-06-15 Thread Brian Wigginton
Logging in via twitter.com then going to the portal site worked.

Thanks Taylor!

-Brian

On Jun 15, 2:55 pm, Taylor Singletary 
wrote:
> Sorry for all the issues around this login -- I really want to get this
> login functioning correctly but we've had some system-wide changes recently
> that have made some elements of fixing this "for reals though" difficult.
> It's an incredibly basic issue that's overcomplicated by the particularities
> of our production environment, the interaction of SSL, and subdomains. I
> hope to have it fixed by the end of the week.
>
> For now -- login to twitter.com, then go to the portal.
>
> Taylor Singletary
> Developer Advocate, Twitterhttp://twitter.com/episod
>
> On Tue, Jun 15, 2010 at 12:41 PM, Brian Wigginton
> wrote:
>
>
>
> > Is anyone else having problems logging into the dev portal?
>
> > I keep getting directed tohttps://twitter.com/sessionswith the
> > message Sorry, that page doesn’t exist!
>
> > -Brian Wigginton


Re: [twitter-dev] Re: Repeat Tweets

2010-06-15 Thread Andy Matsubara
Taylor,

There's a sample of six consecutive tweets.
http://twitter.com/AppleWalker/status/16204554355
http://twitter.com/AppleWalker/status/16204551280
http://twitter.com/AppleWalker/status/16204548302
http://twitter.com/AppleWalker/status/16204545368
http://twitter.com/AppleWalker/status/16204542279
http://twitter.com/AppleWalker/status/16204539134

Andy Matsubara

On Wed, Jun 16, 2010 at 4:21 AM, methnen  wrote:
>> Can you provide some links to the repeated tweets? While things were at
>> their worse last night, it was very easy for duplicate updates to get
>> processed but that shouldn't be the case now.
>
> We manually deleted them and it now appears to have stopped.
>
>> Are you sure that the client you were using isn't trying to re-post tweets
>> on your behalf, thinking they haven't been posted yet?
>
> At first I thought it might be on our end.  As we use the API to make
> tweets via a custom script in our CMS.  However, the script records
> successful posts and then stops posting and the repeating tweet was
> recorded as a successful post and our system never sent it to Twitter
> again.
>
> Anyway it appears to have stopped so I guess all is good.  :)


[twitter-dev] Trouble generating OAuth signature

2010-06-15 Thread Felipe Sodré Silva
Hello all.

I'm trying to write a simple application that sends an update "Hello World"
on behalf of my own twitter account. Therefore, I got my access token and
secret in my dev.twitter webpage and hardcoded it into the code (which I
hided for making it public): http://pastebin.com/n6Ba5nrW

However, I keep getting the following response:

{"request":"/1/statuses/update.json","error":"Incorrect signature"}

I'm doing the whole process by reading this guide:
http://dev.twitter.com/pages/auth
But I just cannot get it to work. What am I doing wrong during the signature
assembly ?

Thanks in advance!

Felipe


[twitter-dev] Links stripped from tweets

2010-06-15 Thread Rudiger
Hi there,
  I'm fetching the latest tweet from a list of users
through /users/lookup in the REST API. I've noticed that all links
(commonly tweet pics etc) are stripped from the xpath //users/user/
status/text. Why does twitter strip links and is there a way to
reinstate them.

Thanks.


Re: [twitter-dev] V2-roadmap access

2010-06-15 Thread Robert Van Dam
Let me boil it down to the simplest case.

I have a protected account that I want to use to provide notifications
to my users (but only my users).  I have oauth completely set up to
let my users authorize me to their twitter accounts.  I can then make
their twitter account follow me.  Except, since I'm protected, that
following request isn't honored until I accept the pending follow
requests.  Currently there is no 'friendships/accept' type API method
so I have effectively done nothing until a human presses the accept
button.

So since this isn't going to work any time soon via the api, am I
likely to get myself banned if I write a bot that periodically logs in
and 'clicks' the accept all pending follower requests link that I as a
human can see?  And by periodically I think I mean once an hour or
less.

On Tue, Jun 15, 2010 at 6:22 PM, Taylor Singletary
 wrote:
> The breadth of functionality we have right now is, unfortunately:
> GET friendships/incoming http://dev.twitter.com/doc/get/friendships/incoming
> GET friendships/outgoing http://dev.twitter.com/doc/get/friendships/outgoing
> and the rest of the friendship methods on the API.
> Now, there may be a way to use these methods in combination with each other
> to accomplish your goals, but I haven't yet connected the dots to ascertain
> that.  I can take a close look, or if someone else on the list has more
> experience in this arena, they might have a suggestion.
> Otherwise, I'd recommend going on with your workaround. The v1 API is going
> to be around for awhile, and I don't think we have this feature on our
> immediate roadmap; that said, sometimes a new feature that's been requested
> like this "just pops up." We'll announce when/if that happens.
> Taylor
>
> On Tue, Jun 15, 2010 at 3:03 PM, Robert Van Dam  wrote:
>>
>> Then perhaps I should ask my real question.  I'm working on a system
>> for broadcasting messages to subsets of our users and we have set up
>> separate accounts for each subset.  However, the company I work for
>> does not want these tweets to be fully public (they are not overly
>> sensitive but nonetheless...) but if I make the accounts protected,
>> then I can not automatically have our customers follow us since there
>> is no function in the api for accepting pending friend requests.
>>
>> So my two options are to make a human login and periodically click the
>> 'Accept all' link on several different accounts or I can write a bot
>> to do it (which I'm sure someone will tell me is a bad idea).  I
>> noticed that there were a couple bug reports about this issue but they
>> were closed with links to the now apparently defunct V2-Roadmap page
>> and obviously no solution in the last two years since the first bug
>> was filed.
>>
>> Is there any chance this functionality will be coming to the api any
>> time soon or will I be forced to code around it indefinitely?
>>
>> On Tue, Jun 15, 2010 at 1:05 PM, Taylor Singletary
>>  wrote:
>> > Hi Rob,
>> > Over time the v2 Roadmap became less and less relevant. We're currently
>> > rethinking what V2 might look like with fresh eyes.
>> > Taylor
>> >
>> > On Tue, Jun 15, 2010 at 9:28 AM, Rob  wrote:
>> >>
>> >> I've seen many references to http://apiwiki.twitter.com/V2-Roadmap,
>> >> particularly with regards to a current api issue I have (accepting
>> >> pending follow requests on protected accounts) but when I go to that
>> >> page I get a mostly empty page that just says "You don't have
>> >> permission to look at V2 Roadmap."  Is that intentional and if so is
>> >> there some place I can go to request access?  I don't see any obvious
>> >> way to signup and login into the necessary workspace on pbwiki.
>> >
>> >
>
>


Re: [twitter-dev] V2-roadmap access

2010-06-15 Thread Taylor Singletary
The breadth of functionality we have right now is, unfortunately:
GET friendships/incoming http://dev.twitter.com/doc/get/friendships/incoming
GET friendships/outgoing http://dev.twitter.com/doc/get/friendships/outgoing

and the rest of the friendship methods on the API.

Now, there may be a way to use these methods in combination with each other
to accomplish your goals, but I haven't yet connected the dots to ascertain
that.  I can take a close look, or if someone else on the list has more
experience in this arena, they might have a suggestion.

Otherwise, I'd recommend going on with your workaround. The v1 API is going
to be around for awhile, and I don't think we have this feature on our
immediate roadmap; that said, sometimes a new feature that's been requested
like this "just pops up." We'll announce when/if that happens.

Taylor

On Tue, Jun 15, 2010 at 3:03 PM, Robert Van Dam  wrote:

> Then perhaps I should ask my real question.  I'm working on a system
> for broadcasting messages to subsets of our users and we have set up
> separate accounts for each subset.  However, the company I work for
> does not want these tweets to be fully public (they are not overly
> sensitive but nonetheless...) but if I make the accounts protected,
> then I can not automatically have our customers follow us since there
> is no function in the api for accepting pending friend requests.
>
> So my two options are to make a human login and periodically click the
> 'Accept all' link on several different accounts or I can write a bot
> to do it (which I'm sure someone will tell me is a bad idea).  I
> noticed that there were a couple bug reports about this issue but they
> were closed with links to the now apparently defunct V2-Roadmap page
> and obviously no solution in the last two years since the first bug
> was filed.
>
> Is there any chance this functionality will be coming to the api any
> time soon or will I be forced to code around it indefinitely?
>
> On Tue, Jun 15, 2010 at 1:05 PM, Taylor Singletary
>  wrote:
> > Hi Rob,
> > Over time the v2 Roadmap became less and less relevant. We're currently
> > rethinking what V2 might look like with fresh eyes.
> > Taylor
> >
> > On Tue, Jun 15, 2010 at 9:28 AM, Rob  wrote:
> >>
> >> I've seen many references to http://apiwiki.twitter.com/V2-Roadmap,
> >> particularly with regards to a current api issue I have (accepting
> >> pending follow requests on protected accounts) but when I go to that
> >> page I get a mostly empty page that just says "You don't have
> >> permission to look at V2 Roadmap."  Is that intentional and if so is
> >> there some place I can go to request access?  I don't see any obvious
> >> way to signup and login into the necessary workspace on pbwiki.
> >
> >
>


Re: [twitter-dev] anywhere link overriding

2010-06-15 Thread Todd Kloots
At the moment, no.  You'll need to do that yourself.  Not too
difficult though, since @Anywhere stamps each link with a class of
"twitter-anywhere-user".  So, you could iterate over all anchor
elements, and if they have that class add the "target" attribute with
a value of "_blank".

- Todd

On Tue, Jun 15, 2010 at 2:44 PM, Furkan Kuru  wrote:
>
> Is there any possibility to change the anywhere links to include
> target="_blank" attribute and value in order to open in a new window?
>
>
>
> --
> Furkan Kuru
>


Re: [twitter-dev] V2-roadmap access

2010-06-15 Thread Robert Van Dam
Then perhaps I should ask my real question.  I'm working on a system
for broadcasting messages to subsets of our users and we have set up
separate accounts for each subset.  However, the company I work for
does not want these tweets to be fully public (they are not overly
sensitive but nonetheless...) but if I make the accounts protected,
then I can not automatically have our customers follow us since there
is no function in the api for accepting pending friend requests.

So my two options are to make a human login and periodically click the
'Accept all' link on several different accounts or I can write a bot
to do it (which I'm sure someone will tell me is a bad idea).  I
noticed that there were a couple bug reports about this issue but they
were closed with links to the now apparently defunct V2-Roadmap page
and obviously no solution in the last two years since the first bug
was filed.

Is there any chance this functionality will be coming to the api any
time soon or will I be forced to code around it indefinitely?

On Tue, Jun 15, 2010 at 1:05 PM, Taylor Singletary
 wrote:
> Hi Rob,
> Over time the v2 Roadmap became less and less relevant. We're currently
> rethinking what V2 might look like with fresh eyes.
> Taylor
>
> On Tue, Jun 15, 2010 at 9:28 AM, Rob  wrote:
>>
>> I've seen many references to http://apiwiki.twitter.com/V2-Roadmap,
>> particularly with regards to a current api issue I have (accepting
>> pending follow requests on protected accounts) but when I go to that
>> page I get a mostly empty page that just says "You don't have
>> permission to look at V2 Roadmap."  Is that intentional and if so is
>> there some place I can go to request access?  I don't see any obvious
>> way to signup and login into the necessary workspace on pbwiki.
>
>


[twitter-dev] anywhere link overriding

2010-06-15 Thread Furkan Kuru
Is there any possibility to change the anywhere links to include
target="_blank" attribute and value in order to open in a new window?



-- 
Furkan Kuru


[twitter-dev] Re: Recent Places-related API enhancements & more to come...

2010-06-15 Thread tsmango
I can't really test this right now because geo services are currently
disabled, but does this mean that the geo/reverse_geocode and geo/
search api methods both return "places" in addition to neighborhoods
and cities now? I understand they are all technically "places" but I
mean business entities alongside neighborhoods and cities. Are they
all mixed together now? If so, is there a way to get either business
listings *or* geographic regions?

I understand you guys now own GeoAPI so you're probably coming from a
similar point of view and I realize that their entities are nested, as
in a business is contained within some geographic region, yet both are
considered entities.

Anyhow, as you said, the documentation is kind of light for geo/search
so I'm just a bit confused as to the data that's actually returned.
Unfortunately, the application and service I work on has been using
geo/reverse_geocode for a while now to attach cities (specifically
cities) to tweets that run through our service and we've been planning
to submit our app to Apple tomorrow.

Thank you very much, in advance.

On Jun 14, 7:43 pm, Taylor Singletary 
wrote:
> Hi Developers,
>
> Today we're launching some of the functionality around "Places" that we
> announced at Chirp. You can read more about the feature 
> here:http://blog.twitter.com/2010/06/twitter-places-more-context-for-your
>
> The launch comes with a batch of API enhancements, with a number of further
> API additions just around the corner (like creating and updating places,
> obviously a crucial component for many implementors).
>
> The documentation in this area is a honestly a bit light at the moment, but
> we'll be offering some more comprehensive documentation going over suggested
> use cases, flows, and more in the coming days.
>
> What matters most for you:
>   - GET geo/nearby_places is now GET geo/search, with some added
> functionality. This is a companion to GET geo/reverse_geocode, that's ideal
> for using in conjunction with a place selection UI.
>     Read all about it at :http://bit.ly/dvNmYB
>     - A query parameter called "query" lets you do textual matching when
> trying to find a place
>     - A query parameter called "ip" lets you do a lookup based on an IP
> address
>     - You can fine tune results with granularity, accuracy, and the
> contained_within parameter, which allows you to identify a place_id
> (matching something like a city), and only search for places within that
> place.
>
>   -  tags in XML output, "place" attribute in JSON output:
>
> Tweets that have a place_id associated with them can now contain some
> additional information not available in the past, including some attributes
> that further describe the location.
>
> Some common place/attributes you might start seeing:
>   - name
>   - street_address
>   - locality
>   - region
>   - phone
>   - postal_code
>   - twitter (a twitter account associated with the place)
>   - cross_streets
>
> Attribute key names can be variant. These are just some of the attribute
> keys you will see, with much more to come.
>
>     Here's a quick XML representation of a status with a place:
>     
>       Mon Jun 14 23:30:14 + 2010
>       16184038366
>       I'm testing out places integrations. Can you hear me Planet
> Houston? I'm at the Epicenter. (psyche)
>       web
>       false
>       
>       
>       false
>       
>       
>         819797
>         Taylor Singletary
>         episod
>         iPhone: 37.778181,-122.397971
>         Reality Technician, Developer Advocate at Twitter,
> displeased at Planet Houston
>         
> http://a1.twimg.com/profile_images/989643540/zod_normal.jpg
> 
>         http://bit.ly/5w7P88
>         false
>         1461
>         00
>         00
>         731673
>         007ffe
>         bb0e79
>         1420
>         Wed Mar 07 22:23:19 + 2007
>         254
>         -28800
>         Pacific Time (US & Canada)
>         
> http://a3.twimg.com/profile_background_images/19651315/fiberoptics.jpg
> 
>         true
>         false
>         true
>         false
>         false
>         6477
>         en
>         false
>       
>       
>       
>       http://www.georss.org/georss";>
>         a851ec943d3a27c5
>         Epicenter Cafe
>         Epicenter Cafe, San Francisco
>         poi
>         http://api.twitter.com/1/geo/id/a851ec943d3a27c5.json
>         
>           
>             street_address
>             764 Harrison St
>           
>         
>         
>           37.781343 -122.399142 37.781343 -122.399142
> 37.781343 -122.399142 37.781343 -122.399142
>         
>         The United States of America
>       
>       
>       
>     
>
>     And here's the JSON representation:
>     {
>         "in_reply_to_user_id": null,
>         "geo": null,
>         "source": "web",
>         "created_at": "Mon Jun 14 23:30:14 + 2010",
>         "place": {
>             "place_type": "poi",
>             "country_code": "US",
>            

[twitter-dev] Re: oauth status update returning error 401 invalid / used nonce

2010-06-15 Thread themattharris
Hey Craig,

Could you let us see what the authorization header you are sending
looks like (obfuscating your oauth keys and secrets)?

What you're aiming for is a header similar to this:

POST /1/statuses/update.xml HTTP/1.1
Accept: */*
Connection: close
User-Agent: OAuth gem v0.4.0
Content-Type: application/x-www-form-urlencoded
Authorization: OAuth
  oauth_consumer_key=\"\",
  oauth_nonce=\"\",
  oauth_signature=\"\",
  oauth_signature_method=\"HMAC-SHA1\",
  oauth_timestamp=\"1276634179\",
  oauth_token=\"xx\",
  oauth_version=\"1.0\"
Content-Length: 27
Host: api.twitter.com

With your post body being the status you are sending. Similar to:

status=something%20to%20say

Matt

On Jun 13, 8:32 pm, Craig  wrote:
> Ok, so I believe my signature is correct because if I take out the
> oauth_token parameter from the signature base I get an incorrect
> signature error instead of the invalid/used nonce error.  I am
> definitely posting to the correct url: "https://api.twitter.com/1/
> statuses/update.xml" because if I change it I get an invalid url
> response.  The nonce I'm generating is unique for every request I'm
> sending.  The timestamp is accurate to the number of seconds that have
> passed since unix epoch.  Obviously the invalid/used nonce error is
> garbage.
>
> Here's the formatting of my URL request in obj c:
>
> // Create the request
> NSString* requestString= [NSString
> stringWithFormat:@"%@",TWITTER_STATUS_UPDATE_URL];
> NSMutableURLRequest* request = [[NSMutableURLRequest alloc]
>                                 initWithURL:[NSURL 
> URLWithString:requestString]
>                                 
> cachePolicy:NSURLRequestReloadIgnoringCacheData
>                                     timeoutInterval:30.0];
> [request setHTTPMethod:@"POST"];
> [request addValue:authHeader forHTTPHeaderField:@"Authorization"];
> [request setValue:@"application/x-www-form-urlencoded"
> forHTTPHeaderField:@"Content-Type"];
> [request setValue:postBodyLength forHTTPHeaderField:@"Content-
> Length"];
> [request setHTTPBody:[postBody
> dataUsingEncoding:NSUTF8StringEncoding]];
>
> Any other ideas?  I'm at a total loss as to why this might be
> happening.
>
> Thanks,
> Craig
>
> On Jun 13, 3:42 pm, Craig  wrote:
>
>
>
> > No dice.  I just tried creating a new app and using the new keys/token
> > to tweet.  I'll go over my steps once more and see if I can track down
> > an issue somewhere...
>
> > On Jun 11, 8:53 pm, Taylor Singletary 
> > wrote:
>
> > > xAuth in this case, I think, is unrelated to the issue. If you can use
> > > a different key and use the "my token" feature to get your access
> > > token, then try to tweet using that token, it will sufficiently
> > > express the problem I think.
>
> > > Taylor
>
> > > On Jun 11, 2010, at 2:48 PM, Craig  wrote:
>
> > > > Hello,
>
> > > > I have an iphone app that is using xauth.  I am able to obtain the
> > > > access token with no problem at all.  When I go to post a status
> > > > update, I receive an invalid / used nonce error.  It can't actually be
> > > > a used nonce since I have checked this multiple times.  Here are the
> > > > details of the post:
>
> > > > url:
> > > >http://api.twitter.com/1/statuses/update.xml
>
> > > > signature base string:
> > > > POST&http%3A%2F%2Fapi.twitter.com%2F1%2Fstatuses
> > > > %2Fupdate.xml&oauth_consumer_key%3Dmyconsumerkey%26oauth_nonce
> > > > %3D397vi5Ug1YHC3UAVUAoB%26oauth_signature_method%3DHMAC-
> > > > SHA1%26oauth_timestamp%3D1276292596%26oauth_token%3Dmytoken
> > > > %26oauth_version%3D1.0%26status%3Dmy%2520tweet
>
> > > > Authorization header:
> > > > OAuth oauth_nonce="397vi5Ug1YHC3UAVUAoB", oauth_signature_method="HMAC-
> > > > SHA1", oauth_timestamp="1276292596",
> > > > oauth_consumer_key="myconsumerkey", oauth_token="mytoken",
> > > > oauth_signature="yOh2zQPGDBlVEP5cDWhjddQWTLc%3D", oauth_version="1.0"
>
> > > > Content-Type:
> > > > [request setValue:@"application/x-www-form-urlencoded"
> > > > forHTTPHeaderField:@"Content-Type"];
>
> > > > I can see no reason why this shouldn't work.  Any help would be
> > > > greatly appreciated!
>
> > > > Thanks,
> > > > Craig


[twitter-dev] Search API reporting temporary error

2010-06-15 Thread Mack D. Male
There seems to be something wrong with the search API. It is only
returning a tiny subset of what I would expect (after looking at the
same query on search.twitter.com for instance) and is reporting the
following:

"adjusted since_id to 16201119561 due to temporary error"

Any word on what this temporary error is, or when it'll be fixed?

I'm using the latest build of TweetSharp, if that makes any difference.


Re: [twitter-dev] Dev Portal Login

2010-06-15 Thread Taylor Singletary
Sorry for all the issues around this login -- I really want to get this
login functioning correctly but we've had some system-wide changes recently
that have made some elements of fixing this "for reals though" difficult.
It's an incredibly basic issue that's overcomplicated by the particularities
of our production environment, the interaction of SSL, and subdomains. I
hope to have it fixed by the end of the week.

For now -- login to twitter.com, then go to the portal.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Tue, Jun 15, 2010 at 12:41 PM, Brian Wigginton
wrote:

> Is anyone else having problems logging into the dev portal?
>
> I keep getting directed to https://twitter.com/sessions with the
> message Sorry, that page doesn’t exist!
>
> -Brian Wigginton
>


[twitter-dev] Dev Portal Login

2010-06-15 Thread Brian Wigginton
Is anyone else having problems logging into the dev portal?

I keep getting directed to https://twitter.com/sessions with the
message Sorry, that page doesn’t exist!

-Brian Wigginton


[twitter-dev] What can be done with twitter data?

2010-06-15 Thread ckelly74
What can be done with the twitter api? What can be done with data? What kind of 
output is useful to the general public? So far I have found twitter to be a 
public version of text messages. I have ideas for twitter such as twitter 
dating and twitter chatrooms is this something that the twitter api could be 
used for to develop such a program?

-Chris
ckel...@aol.com
Sent on the Sprint® Now Network from my BlackBerry®

Re: [twitter-dev] Is there any way to get the tweet conference history at one API?

2010-06-15 Thread M. Edward (Ed) Borasky

Quoting Taylor Singletary :


If you're looking for all tweets matching a specific hashtag, you'll find
that the Search API won't help you too much after the fact, as it only keeps
results for tweets from the last 10 days or so (besides Search not being a
verbatim representation/search engine for *all* tweets on Twitter).

There are many third party integrations that archive tweets, especially
those associated with a conference (TwapperKeeper for instance:
http://twapperkeeper.com/index.php )

The best way to get all tweets for a conference is by preparing a bit
beforehand and using the Streaming API to track the conference's hashtag,
consuming tweets as they happen.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


I've had good luck with TwapperKeeper. When you create an archive, it  
starts up a Streaming data collection and then does a Search to get  
whatever history already exists. So if you start early enough, you'll  
get everything.



On Tue, Jun 15, 2010 at 1:56 AM, Karpagarajan wrote:


Is there any way to get the tweet conference history at one API?









[twitter-dev] Re: Repeat Tweets

2010-06-15 Thread methnen
> Can you provide some links to the repeated tweets? While things were at
> their worse last night, it was very easy for duplicate updates to get
> processed but that shouldn't be the case now.

We manually deleted them and it now appears to have stopped.

> Are you sure that the client you were using isn't trying to re-post tweets
> on your behalf, thinking they haven't been posted yet?

At first I thought it might be on our end.  As we use the API to make
tweets via a custom script in our CMS.  However, the script records
successful posts and then stops posting and the repeating tweet was
recorded as a successful post and our system never sent it to Twitter
again.

Anyway it appears to have stopped so I guess all is good.  :)


Re: [twitter-dev] Is there any way to get the tweet conference history at one API?

2010-06-15 Thread Taylor Singletary
If you're looking for all tweets matching a specific hashtag, you'll find
that the Search API won't help you too much after the fact, as it only keeps
results for tweets from the last 10 days or so (besides Search not being a
verbatim representation/search engine for *all* tweets on Twitter).

There are many third party integrations that archive tweets, especially
those associated with a conference (TwapperKeeper for instance:
http://twapperkeeper.com/index.php )

The best way to get all tweets for a conference is by preparing a bit
beforehand and using the Streaming API to track the conference's hashtag,
consuming tweets as they happen.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Tue, Jun 15, 2010 at 1:56 AM, Karpagarajan wrote:

> Is there any way to get the tweet conference history at one API?
>


Re: [twitter-dev] I'm sure you guys know this, but ...

2010-06-15 Thread M. Edward (Ed) Borasky

Quoting Taylor Singletary :


Twitter had quite a night.
http://status.twitter.com/post/699623494/site-availability-issues-due-to-failed-enhancement-of


I finally gave up and went to bed - I hope you all get a chance to do  
that soon. ;-)






Re: [twitter-dev] Repeat Tweets

2010-06-15 Thread Taylor Singletary
Hi Jamie,

Can you provide some links to the repeated tweets? While things were at
their worse last night, it was very easy for duplicate updates to get
processed but that shouldn't be the case now.

Are you sure that the client you were using isn't trying to re-post tweets
on your behalf, thinking they haven't been posted yet?

Taylor

On Tue, Jun 15, 2010 at 11:04 AM, methnen  wrote:

> We had a tweet start looping/repeating today.  Is there something up
> regarding that?  We definitely only tweeted the item once but it has
> repeated so many times some of our followers are getting mad at us.
> But we can't stop it.  Anyone else seeing this or can anyone from
> Twitter verify that this is happening and that it's going to be
> resolved?
>
> Jamie
>


Re: [twitter-dev] Lost without maps...

2010-06-15 Thread Taylor Singletary
Hi Ken,

We mention it in an update here:
http://status.twitter.com/post/701016717/high-error-rate-on-twitter-com

"Update 9:22 AM PDT: We’ve temporarily turned off our Twitter Places (Geo)
feature to reduce the high rate of errors."

This is obviously still down, and I don't have an ETA as to when it will be
back up. Soon we hope!

Taylor

On Tue, Jun 15, 2010 at 11:20 AM, Ken  wrote:

> Geolocation seems to be disabled..?
>
> One of our services depends on this. Haven't seen this particular
> outage mentioned. Any ETA for a fix?
>
> Note to self: site must gracefully degrade when there's no Twitter...
>


Re: [twitter-dev] V2-roadmap access

2010-06-15 Thread Taylor Singletary
Hi Rob,

Over time the v2 Roadmap became less and less relevant. We're currently
rethinking what V2 might look like with fresh eyes.

Taylor

On Tue, Jun 15, 2010 at 9:28 AM, Rob  wrote:

> I've seen many references to http://apiwiki.twitter.com/V2-Roadmap,
> particularly with regards to a current api issue I have (accepting
> pending follow requests on protected accounts) but when I go to that
> page I get a mostly empty page that just says "You don't have
> permission to look at V2 Roadmap."  Is that intentional and if so is
> there some place I can go to request access?  I don't see any obvious
> way to signup and login into the necessary workspace on pbwiki.
>


[twitter-dev] Lost without maps...

2010-06-15 Thread Ken
Geolocation seems to be disabled..?

One of our services depends on this. Haven't seen this particular
outage mentioned. Any ETA for a fix?

Note to self: site must gracefully degrade when there's no Twitter...


[twitter-dev] V2-roadmap access

2010-06-15 Thread Rob
I've seen many references to http://apiwiki.twitter.com/V2-Roadmap,
particularly with regards to a current api issue I have (accepting
pending follow requests on protected accounts) but when I go to that
page I get a mostly empty page that just says "You don't have
permission to look at V2 Roadmap."  Is that intentional and if so is
there some place I can go to request access?  I don't see any obvious
way to signup and login into the necessary workspace on pbwiki.


[twitter-dev] Repeat Tweets

2010-06-15 Thread methnen
We had a tweet start looping/repeating today.  Is there something up
regarding that?  We definitely only tweeted the item once but it has
repeated so many times some of our followers are getting mad at us.
But we can't stop it.  Anyone else seeing this or can anyone from
Twitter verify that this is happening and that it's going to be
resolved?

Jamie


Re: [twitter-dev] Keep it real

2010-06-15 Thread Zac Bowling
Hey Abraham,

You have been a big part of the life blood on this list. Sad I won't see you 
around that much. Twitter's dev growth has exploded since I got involved over 
24 months ago and ever since then I noticed you have been all over this list 
and one of the biggest rockstars for the twitter dev community. Almost 
infamous. I literally seen people seeking you out just to meet you at that dev 
meet up we had here in SF earlier this year after you tweeted you were there 
which is pretty epic.  

You have posted 1154 messages to this list which is just shy from being the top 
poster (just ~50 behind Al3x from when he was around). That number just blows 
my mind. You not being here as much will make a huge dent that will be really 
hard to fill. 

Hope for the best in your quest for a work and hope we can work on something 
awesome together someday. 

Zac Bowling
@zbowling



On Jun 14, 2010, at 9:13 PM, Abraham Williams wrote:

> I just wanted to let everyone know that I won't be on the list much going 
> forward. Reading the list has become a time consuming burden (1000+ 
> emails/month) and much of it has become reiteration for me. Getting more time 
> on my own projects and paying for the roof over my head are top priorities 
> right now. But if you have questions pertaining to me feel free to cc me on 
> them and I will be more then happy to jump in.
> 
> If you are interested in hiring me for Twitter integration projects 
> (especially OAuth with just over 2 weeks left) or just want to say hi you can 
> reach me as 4bra...@gmail.com or @abraham.
> 
> Oh. I have several Twitter API related blog posts in draft so be sure to look 
> for them on http://blog.abrah.am/.
> 
> I'll be around :)
> Abraham
> -
> Abraham Williams | Hacker Advocate | http://abrah.am
> @abraham | http://projects.abrah.am | http://blog.abrah.am
> This email is: [ ] shareable [x] ask first [ ] private.



[twitter-dev] elliot haughin oAuth lib

2010-06-15 Thread Peter Denton
Hello,
Is anyone using elliot haughin oAuth lib for codeigniter? If so, Im having
an issue with $this->twitter->call('friendships/exists' and would love to
know if you have had experienced issues with that as well.

Cheers


Re: [twitter-dev] Keep it real

2010-06-15 Thread Josh Roesslein
Thanks a ton Abraham for all your help on this list, you will be missed.

As for a possible replacement for Q/A off of this list, has a stackoverflow
sort of site been considered?
I think this would make a good addition to the dev.twitter.com website. Just
an idea.

Josh

On Tue, Jun 15, 2010 at 10:25 AM, Ryan Sarver  wrote:

> Abraham,
>
> Really sorry to hear that we'll be losing you. You have been a HUGE part of
> this community for many years and have helped countless developers make
> their way through, at times, really choppy waters. We can't thank you enough
> for the time and energy you have put into helping developers in the twitter
> API community grow and please know we are really appreciative of all your
> efforts.
>
> FWIW, we are all in agreement that the mailing list is probably no longer
> the right tool for the community and are actively looking at other
> solutions. Any suggestions are welcome.
>
> If you ever need a reference, please consider us top of the list :)
>
> Best wishes and hopefully we'll find you lurking.
>
> Ryan
>
> On Mon, Jun 14, 2010 at 9:13 PM, Abraham Williams <4bra...@gmail.com>wrote:
>
>> I just wanted to let everyone know that I won't be on the list much going
>> forward. Reading the list has become a time consuming burden (1000+
>> emails/month) and much of it has become reiteration for me. Getting more
>> time on my own projects and paying for the roof over my head are top
>> priorities right now. But if you have questions pertaining to me feel free
>> to cc me on them and I will be more then happy to jump in.
>>
>> If you are interested in hiring me for Twitter integration projects
>> (especially OAuth with just over 2 weeks left) or just want to say hi you
>> can reach me as 4bra...@gmail.com or @abraham.
>>
>> Oh. I have several Twitter API related blog posts in draft so be sure to
>> look for them on http://blog.abrah.am/.
>>
>> I'll be around :)
>> Abraham
>> -
>> Abraham Williams | Hacker Advocate | http://abrah.am
>> @abraham | http://projects.abrah.am | http://blog.abrah.am
>> This email is: [ ] shareable [x] ask first [ ] private.
>>
>
>


Re: [twitter-dev] undo retweets in stream api

2010-06-15 Thread John Kalucki
Various counts are off on Twitter right now, so you shouldn't be
basing much on counts.

If you are following the original tweeter, you get the retweet, but
not the deletion. If you are following the retweeter, you get both the
retweet and the deletion notice. This is due to a limitation in the
deletion message format -- there isn't enough information to route the
message in the first case. This affects several streaming use cases,
and is a known issue that we, eventually, hope to fix the next time
we're in that part of the code.

One workaround, albeit often impractical, is to take the full firehose
and do the correlation on your end.

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



On Tue, Jun 15, 2010 at 8:35 AM, Furkan Kuru  wrote:
>
> Yes, the original tweet was not deleted. Some of the retweets were deleted.
>
> Actually we noticed this problem when one of the tweet's retweet count
> seemed higher than it was shown in twitter. (both not exceeding 100)
>
> I do not know if twitter acts retweets as a reply-to-user and sends it to
> our stream.
>
> so we do not know wheter some of these retweet messages come from the users
> whom we do not follow.
>
> But so far, our retweet scores were always smaller than it was shown in
> twitter and we thought it was caused because of the fact that we do not
> follow everyone that might retweet the tweet.
>
>
> On Tue, Jun 15, 2010 at 6:21 PM, John Kalucki  wrote:
>>
>> Was the original tweet by an account you are following, or was the
>> retweet by an account you are following? Also, I'm assuming that it
>> was the retweet that was deleted, not the original tweet.
>>
>> -John Kalucki
>> http://twitter.com/jkalucki
>> Infrastructure, Twitter Inc.
>>
>>
>> On Tue, Jun 15, 2010 at 6:59 AM, Furkan Kuru  wrote:
>> >
>> > I am using the follow param on a "shadow" account.
>> >
>> >
>> > On Tue, Jun 15, 2010 at 4:14 PM, John Kalucki  wrote:
>> >>
>> >> Which endpoint and parameters are you using? Firehose? Sample? Track?
>> >> Etc.
>> >>
>> >> -John Kalucki
>> >> http://twitter.com/jkalucki
>> >> Infrastructure, Twitter Inc.
>> >>
>> >>
>> >> On Tue, Jun 15, 2010 at 3:03 AM, Furkan Kuru 
>> >> wrote:
>> >> > Hello,
>> >> >
>> >> > In our stream we receive deleted statuses but can not receive undo
>> >> > retweets.
>> >> >
>> >> > Is undoing a retweet message is different than deleting a status?
>> >> >
>> >> > wiki has shown only the deleted status message info:
>> >> >
>> >> >
>> >> > JSON: { "delete": { "status": { "id": 1234, "user_id": 3 } } }
>> >> >
>> >> >
>> >> > --
>> >> > Furkan Kuru
>> >> >
>> >
>> >
>> >
>> > --
>> > Furkan Kuru
>> >
>
>
>
> --
> Furkan Kuru
>


Re: [twitter-dev] undo retweets in stream api

2010-06-15 Thread Furkan Kuru
Yes, the original tweet was not deleted. Some of the retweets were deleted.

Actually we noticed this problem when one of the tweet's retweet count
seemed higher than it was shown in twitter. (both not exceeding 100)

I do not know if twitter acts retweets as a reply-to-user and sends it to
our stream.

so we do not know wheter some of these retweet messages come from the users
whom we do not follow.

But so far, our retweet scores were always smaller than it was shown in
twitter and we thought it was caused because of the fact that we do not
follow everyone that might retweet the tweet.


On Tue, Jun 15, 2010 at 6:21 PM, John Kalucki  wrote:

> Was the original tweet by an account you are following, or was the
> retweet by an account you are following? Also, I'm assuming that it
> was the retweet that was deleted, not the original tweet.
>
> -John Kalucki
> http://twitter.com/jkalucki
> Infrastructure, Twitter Inc.
>
>
> On Tue, Jun 15, 2010 at 6:59 AM, Furkan Kuru  wrote:
> >
> > I am using the follow param on a "shadow" account.
> >
> >
> > On Tue, Jun 15, 2010 at 4:14 PM, John Kalucki  wrote:
> >>
> >> Which endpoint and parameters are you using? Firehose? Sample? Track?
> Etc.
> >>
> >> -John Kalucki
> >> http://twitter.com/jkalucki
> >> Infrastructure, Twitter Inc.
> >>
> >>
> >> On Tue, Jun 15, 2010 at 3:03 AM, Furkan Kuru 
> wrote:
> >> > Hello,
> >> >
> >> > In our stream we receive deleted statuses but can not receive undo
> >> > retweets.
> >> >
> >> > Is undoing a retweet message is different than deleting a status?
> >> >
> >> > wiki has shown only the deleted status message info:
> >> >
> >> >
> >> > JSON: { "delete": { "status": { "id": 1234, "user_id": 3 } } }
> >> >
> >> >
> >> > --
> >> > Furkan Kuru
> >> >
> >
> >
> >
> > --
> > Furkan Kuru
> >
>



-- 
Furkan Kuru


Re: [twitter-dev] Keep it real

2010-06-15 Thread Ryan Sarver
Abraham,

Really sorry to hear that we'll be losing you. You have been a HUGE part of
this community for many years and have helped countless developers make
their way through, at times, really choppy waters. We can't thank you enough
for the time and energy you have put into helping developers in the twitter
API community grow and please know we are really appreciative of all your
efforts.

FWIW, we are all in agreement that the mailing list is probably no longer
the right tool for the community and are actively looking at other
solutions. Any suggestions are welcome.

If you ever need a reference, please consider us top of the list :)

Best wishes and hopefully we'll find you lurking.

Ryan

On Mon, Jun 14, 2010 at 9:13 PM, Abraham Williams <4bra...@gmail.com> wrote:

> I just wanted to let everyone know that I won't be on the list much going
> forward. Reading the list has become a time consuming burden (1000+
> emails/month) and much of it has become reiteration for me. Getting more
> time on my own projects and paying for the roof over my head are top
> priorities right now. But if you have questions pertaining to me feel free
> to cc me on them and I will be more then happy to jump in.
>
> If you are interested in hiring me for Twitter integration projects
> (especially OAuth with just over 2 weeks left) or just want to say hi you
> can reach me as 4bra...@gmail.com or @abraham.
>
> Oh. I have several Twitter API related blog posts in draft so be sure to
> look for them on http://blog.abrah.am/.
>
> I'll be around :)
> Abraham
> -
> Abraham Williams | Hacker Advocate | http://abrah.am
> @abraham | http://projects.abrah.am | http://blog.abrah.am
> This email is: [ ] shareable [x] ask first [ ] private.
>


Re: [twitter-dev] undo retweets in stream api

2010-06-15 Thread John Kalucki
Was the original tweet by an account you are following, or was the
retweet by an account you are following? Also, I'm assuming that it
was the retweet that was deleted, not the original tweet.

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


On Tue, Jun 15, 2010 at 6:59 AM, Furkan Kuru  wrote:
>
> I am using the follow param on a "shadow" account.
>
>
> On Tue, Jun 15, 2010 at 4:14 PM, John Kalucki  wrote:
>>
>> Which endpoint and parameters are you using? Firehose? Sample? Track? Etc.
>>
>> -John Kalucki
>> http://twitter.com/jkalucki
>> Infrastructure, Twitter Inc.
>>
>>
>> On Tue, Jun 15, 2010 at 3:03 AM, Furkan Kuru  wrote:
>> > Hello,
>> >
>> > In our stream we receive deleted statuses but can not receive undo
>> > retweets.
>> >
>> > Is undoing a retweet message is different than deleting a status?
>> >
>> > wiki has shown only the deleted status message info:
>> >
>> >
>> > JSON: { "delete": { "status": { "id": 1234, "user_id": 3 } } }
>> >
>> >
>> > --
>> > Furkan Kuru
>> >
>
>
>
> --
> Furkan Kuru
>


Re: [twitter-dev] Profile image uploads not working (using twitter-async)

2010-06-15 Thread Taylor Singletary
The image upload facilities at Twitter are in need of some love (and are
being worked on!) -- they'll often throw a 500 error and actually update the
image, or show a 500 error and not update the image.. it should, in general,
function better and more reliably in the near future.  The current site
issues make it sometimes difficult to have clarity on how something failed,
and at what stage.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Tue, Jun 15, 2010 at 7:00 AM, Roy Tanck  wrote:

> I'm trying to upload profile images using oAuth. This basically works
> (I get the right return data, no errors), except that the image is not
> updated. Sending tweets through the same library does work, so this
> probably isn't an authentication issue.
>
> As per the twitter-async documentation, I'm using:
>
> $twitterObj->post('/account/update_profile_image.json', array('@image'
> => '@'.$img_path));
>
> $img_path is the correct path (+filename) for the file, I've checked
> the folder name using phpinfo, used a test image, etc.
>
> Since I'm not getting errors, this issue is very hard to troubleshoot
> from my end. Suggestions on how to tackle this very welcome.
>
> (More info on twitter-async is here:
> http://github.com/jmathai/twitter-async
> , on sending images here
> http://wiki.github.com/jmathai/twitter-async/#multipart)
>


Re: [twitter-dev] TwitPic oAuth Echo Help! - PHP

2010-06-15 Thread Taylor Singletary
Hi Greg,

Went over your code a bit more and got it to work with TwitPic -- here's the
new version: http://pastie.org/1005387

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Tue, Jun 15, 2010 at 6:31 AM, Taylor Singletary <
taylorsinglet...@twitter.com> wrote:

> One thing to watch out for with OAuth Echo is that you don't actually
> execute the verify_credentials call yourself when you're building the
> authorization header for the request -- by doing so, you will have marked
> the oauth_nonce you used as already processed. Looking at your code, I don't
> think that's your issue.
>
> Your code shows you tacking on the oauth_token to the authorization header,
> but it needs to be part of your entire signed request. You should be using
> your oauth_token while building your signature base string, and then use
> your oauth_token_secret as part of the composite signing key you use to sign
> the request -- then generate your HTTP header and attach it to the OAuth
> Echo request to twitpic.
>
> Taylor Singletary
> Developer Advocate, Twitter
> http://twitter.com/episod
>
>
>
> On Tue, Jun 15, 2010 at 4:30 AM, Greg  wrote:
>
>> Hello all,
>>
>> I've trying to get this to work for the past couple of days - but
>> every request to TwitPic returns a 401. I'm signing the requests with
>> my ConsumerKey and consumerSecret to Twitter using the verify_account
>> API call. Then I'm adding in the Oauth Realm and the OAuth Token as
>> part of the header. Can anyone point out what I am doing wrong?
>>
>> Code Here: http://pastie.org/1005179
>>
>> Thanks again,
>> Greg
>>
>
>


Re: [twitter-dev] I'm sure you guys know this, but ...

2010-06-15 Thread Matt Harris
I agree its not entirely clear but the fully recovered is in reference  
to the issues handled overnight.


We're still working on the fixes for the counts being off.

Thanks for bearing with us.

Matt Harris
Developer Advocate, Twitter
http://twitter.com/themattharris

On Jun 15, 2010, at 6:34, Marco Kaiser  wrote:

I would question the "fully recovered" if I look at the still  
unrealistic values returned for number of tweets per user...


On Tue, Jun 15, 2010 at 3:27 PM, Taylor Singletary > wrote:

Twitter had quite a night. 
http://status.twitter.com/post/699623494/site-availability-issues-due-to-failed-enhancement-of

On Mon, Jun 14, 2010 at 11:39 PM, M. Edward (Ed) Borasky > wrote:
I'm experiencing multiple chaotic symptoms on the main web  
application.


1. I post a tweet. I get "Internal System Error" but the tweet posts.
2. I go to my "home page" http://twitter.com/znmeb and it's totally  
blank.
3. I see multiple copies of tweets and other people see multiple  
copies of mine.
4. Under the tweet box, under the location it says, "Share your  
first tweet with the world"

5. The retweet button was gone, but now it's back.

This is in addition to the fail whales, which seem to have gone  
away. It looks to me like code is being switched in and out of  
operation in a somewhat unplanned manner. Ordinary folks are  
starting to ask me WTF and I have no clue.


The good news is that the "places" selection in the web application  
is giving me a bigger list of possible places. I'm trying now to see  
what's being posted in the tweets.






[twitter-dev] Profile image uploads not working (using twitter-async)

2010-06-15 Thread Roy Tanck
I'm trying to upload profile images using oAuth. This basically works
(I get the right return data, no errors), except that the image is not
updated. Sending tweets through the same library does work, so this
probably isn't an authentication issue.

As per the twitter-async documentation, I'm using:

$twitterObj->post('/account/update_profile_image.json', array('@image'
=> '@'.$img_path));

$img_path is the correct path (+filename) for the file, I've checked
the folder name using phpinfo, used a test image, etc.

Since I'm not getting errors, this issue is very hard to troubleshoot
from my end. Suggestions on how to tackle this very welcome.

(More info on twitter-async is here: http://github.com/jmathai/twitter-async
, on sending images here 
http://wiki.github.com/jmathai/twitter-async/#multipart)


Re: [twitter-dev] undo retweets in stream api

2010-06-15 Thread Furkan Kuru
I am using the follow param on a "shadow" account.


On Tue, Jun 15, 2010 at 4:14 PM, John Kalucki  wrote:

> Which endpoint and parameters are you using? Firehose? Sample? Track? Etc.
>
> -John Kalucki
> http://twitter.com/jkalucki
> Infrastructure, Twitter Inc.
>
>
> On Tue, Jun 15, 2010 at 3:03 AM, Furkan Kuru  wrote:
> > Hello,
> >
> > In our stream we receive deleted statuses but can not receive undo
> retweets.
> >
> > Is undoing a retweet message is different than deleting a status?
> >
> > wiki has shown only the deleted status message info:
> >
> >
> > JSON: { "delete": { "status": { "id": 1234, "user_id": 3 } } }
> >
> >
> > --
> > Furkan Kuru
> >
>



-- 
Furkan Kuru


Re: [twitter-dev] I'm sure you guys know this, but ...

2010-06-15 Thread Marco Kaiser
I would question the "fully recovered" if I look at the still unrealistic
values returned for number of tweets per user...

On Tue, Jun 15, 2010 at 3:27 PM, Taylor Singletary <
taylorsinglet...@twitter.com> wrote:

> Twitter had quite a night.
> http://status.twitter.com/post/699623494/site-availability-issues-due-to-failed-enhancement-of
>
> On Mon, Jun 14, 2010 at 11:39 PM, M. Edward (Ed) Borasky <
> zn...@borasky-research.net> wrote:
>
>> I'm experiencing multiple chaotic symptoms on the main web application.
>>
>> 1. I post a tweet. I get "Internal System Error" but the tweet posts.
>> 2. I go to my "home page" http://twitter.com/znmeb and it's totally
>> blank.
>> 3. I see multiple copies of tweets and other people see multiple copies of
>> mine.
>> 4. Under the tweet box, under the location it says, "Share your first
>> tweet with the world"
>> 5. The retweet button was gone, but now it's back.
>>
>> This is in addition to the fail whales, which seem to have gone away. It
>> looks to me like code is being switched in and out of operation in a
>> somewhat unplanned manner. Ordinary folks are starting to ask me WTF and I
>> have no clue.
>>
>> The good news is that the "places" selection in the web application is
>> giving me a bigger list of possible places. I'm trying now to see what's
>> being posted in the tweets.
>>
>>
>


Re: [twitter-dev] TwitPic oAuth Echo Help! - PHP

2010-06-15 Thread Taylor Singletary
One thing to watch out for with OAuth Echo is that you don't actually
execute the verify_credentials call yourself when you're building the
authorization header for the request -- by doing so, you will have marked
the oauth_nonce you used as already processed. Looking at your code, I don't
think that's your issue.

Your code shows you tacking on the oauth_token to the authorization header,
but it needs to be part of your entire signed request. You should be using
your oauth_token while building your signature base string, and then use
your oauth_token_secret as part of the composite signing key you use to sign
the request -- then generate your HTTP header and attach it to the OAuth
Echo request to twitpic.

Taylor Singletary
Developer Advocate, Twitter
http://twitter.com/episod


On Tue, Jun 15, 2010 at 4:30 AM, Greg  wrote:

> Hello all,
>
> I've trying to get this to work for the past couple of days - but
> every request to TwitPic returns a 401. I'm signing the requests with
> my ConsumerKey and consumerSecret to Twitter using the verify_account
> API call. Then I'm adding in the Oauth Realm and the OAuth Token as
> part of the header. Can anyone point out what I am doing wrong?
>
> Code Here: http://pastie.org/1005179
>
> Thanks again,
> Greg
>


Re: [twitter-dev] I'm sure you guys know this, but ...

2010-06-15 Thread Taylor Singletary
Twitter had quite a night.
http://status.twitter.com/post/699623494/site-availability-issues-due-to-failed-enhancement-of

On Mon, Jun 14, 2010 at 11:39 PM, M. Edward (Ed) Borasky <
zn...@borasky-research.net> wrote:

> I'm experiencing multiple chaotic symptoms on the main web application.
>
> 1. I post a tweet. I get "Internal System Error" but the tweet posts.
> 2. I go to my "home page" http://twitter.com/znmeb and it's totally blank.
> 3. I see multiple copies of tweets and other people see multiple copies of
> mine.
> 4. Under the tweet box, under the location it says, "Share your first tweet
> with the world"
> 5. The retweet button was gone, but now it's back.
>
> This is in addition to the fail whales, which seem to have gone away. It
> looks to me like code is being switched in and out of operation in a
> somewhat unplanned manner. Ordinary folks are starting to ask me WTF and I
> have no clue.
>
> The good news is that the "places" selection in the web application is
> giving me a bigger list of possible places. I'm trying now to see what's
> being posted in the tweets.
>
>


[twitter-dev] Is there any way to get the tweet conference history at one API?

2010-06-15 Thread Karpagarajan
Is there any way to get the tweet conference history at one API?


Re: [twitter-dev] undo retweets in stream api

2010-06-15 Thread John Kalucki
Which endpoint and parameters are you using? Firehose? Sample? Track? Etc.

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


On Tue, Jun 15, 2010 at 3:03 AM, Furkan Kuru  wrote:
> Hello,
>
> In our stream we receive deleted statuses but can not receive undo retweets.
>
> Is undoing a retweet message is different than deleting a status?
>
> wiki has shown only the deleted status message info:
>
>
> JSON: { "delete": { "status": { "id": 1234, "user_id": 3 } } }
>
>
> --
> Furkan Kuru
>


Re: [twitter-dev] TwitPic oAuth Echo Help! - PHP

2010-06-15 Thread Rajiv Verma™
Might be because Twitter is behaving wired from the last 2 days.

On Tue, Jun 15, 2010 at 5:00 PM, Greg  wrote:

> Hello all,
>
> I've trying to get this to work for the past couple of days - but
> every request to TwitPic returns a 401. I'm signing the requests with
> my ConsumerKey and consumerSecret to Twitter using the verify_account
> API call. Then I'm adding in the Oauth Realm and the OAuth Token as
> part of the header. Can anyone point out what I am doing wrong?
>
> Code Here: http://pastie.org/1005179
>
> Thanks again,
> Greg




-- 
Thanks & Regards
Rajiv Verma
Bangalore
E-Mail: rajiv@gmail.com
Ph: +91-92430-12766
Go Green, Use minimum natural resources!


[twitter-dev] TwitPic oAuth Echo Help! - PHP

2010-06-15 Thread Greg
Hello all,

I've trying to get this to work for the past couple of days - but
every request to TwitPic returns a 401. I'm signing the requests with
my ConsumerKey and consumerSecret to Twitter using the verify_account
API call. Then I'm adding in the Oauth Realm and the OAuth Token as
part of the header. Can anyone point out what I am doing wrong?

Code Here: http://pastie.org/1005179

Thanks again,
Greg


[twitter-dev] undo retweets in stream api

2010-06-15 Thread Furkan Kuru
Hello,

In our stream we receive deleted statuses but can not receive undo retweets.

Is undoing a retweet message is different than deleting a status?

wiki has shown only the deleted status message info:


JSON: { "delete": { "status": { "id": 1234, "user_id": 3 } } }


-- 
Furkan Kuru


[twitter-dev] confirmation about Twitterbot/0.1

2010-06-15 Thread Stephen Rife
Hi

Is this useragent actually from Twitter (Twitterbot/0.1)?

128.242.241.133 - - [15/Jun/2010:17:36:29 +0900] "HEAD /support/signup/
null.html HTTP/1.1" 200 - "-" "Twitterbot/0.1"

I found a post saying it is probably in Twitter's IPs range.
http://www.jongales.com/blog/2010/04/14/whats-twitterbot0-1/

I made a dummy page and tweeted it just once and noticed that the bot
has two hits with the same timestamp.  In other words two HEAD
requests at practically the same time.  Heard from another developer
that it his site was hit many more times.  I'm guessing this might be
related to the duplicate tweet posting issue today.
http://status.twitter.com/post/699623494/site-availability-issues-due-to-failed-enhancement-of

It would be nice to have a contact URL or email address in the user
agent when there are issues like this.  (a url with info that explains
the bot and policy is probably best practice so people know who owns
the bot.)

- Steve

Stephen Rife
DIgital Garage
http://twitter.com/melobubu



Re: [twitter-dev] 502 Bad Gateway when trying to receive xml results

2010-06-15 Thread Rajiv Verma™
lolz!! Best Of Luck :)

On Tue, Jun 15, 2010 at 11:28 AM, Tom Fulcher wrote:

> Thanks so much for letting me know! That should’ve been my first port of
> call! Check if the fail whale was swimming!
>
>
>
> *From:* twitter-development-talk@googlegroups.com [mailto:
> twitter-development-t...@googlegroups.com] *On Behalf Of *Rajiv Verma™
> *Sent:* Tuesday, 15 June 2010 3:07 PM
> *To:* twitter-development-talk@googlegroups.com
> *Subject:* Re: [twitter-dev] 502 Bad Gateway when trying to receive xml
> results
>
>
>
> For now, Twitter is down since the last couple of hours
>
> On Tue, Jun 15, 2010 at 10:33 AM, thomen 
> wrote:
>
> Hi Guys,
> I've got an asp.net usercontrol to display twitter feeds.
>
> It requests the xml using this url and then parsing it: "http://
> twitter.com/statuses/user_timeline.xml?
> screen_name=INSERTUSERNAMEHERE&count=INSERTPOSTCOUNTHERE";
>
> ie "http://twitter.com/statuses/user_timeline.xml?
> screen_name=ladygaga&count=5";
>
> public List GetStatusUpdates(string screenName, int
> count)
> {
>string url = String.Format(StatusesUserTimeline, screenName, count);
> //this becomes something like:
> http://twitter.com/statuses/user_timeline.xml?screen_name=ladygaga&count=5
>string xml = FetchXmlFromUrl(url);
>
>return CreateStatusObjectsFromXml(xml, count);
> }
>
> protected virtual string FetchXmlFromUrl(string url)
>{
>using (WebClient client = new WebClient())
>using (Stream s = client.OpenRead(url))
>using (StreamReader sr = new StreamReader(s))
>{
>return sr.ReadToEnd();
>}
>}
>
> etc etc (if you need more code I can provide)
>
> Just starting over the weekend on most of our sites we're now getting
> the response: The remote server returned an error: (502) Bad Gateway
> when trying to fetch the xml from the url
>
> just wondering what would cause the 502???
>
> the usercontrol is cached so we don't exceed the request limit..
>
>
>
>
> --
> Thanks & Regards
> Rajiv Verma
> Bangalore
> E-Mail: rajiv@gmail.com
> Ph: +91-92430-12766
> Go Green, Use minimum natural resources!
>



-- 
Thanks & Regards
Rajiv Verma
Bangalore
E-Mail: rajiv@gmail.com
Ph: +91-92430-12766
Go Green, Use minimum natural resources!


[twitter-dev] Re: Recent Places-related API enhancements & more to come...

2010-06-15 Thread Ramanean
Whether it would be better to use authentication for it?

Thanks
Shan

On Jun 15, 4:43 am, Taylor Singletary 
wrote:
> Hi Developers,
>
> Today we're launching some of the functionality around "Places" that we
> announced at Chirp. You can read more about the feature 
> here:http://blog.twitter.com/2010/06/twitter-places-more-context-for-your
>
> The launch comes with a batch of API enhancements, with a number of further
> API additions just around the corner (like creating and updating places,
> obviously a crucial component for many implementors).
>
> The documentation in this area is a honestly a bit light at the moment, but
> we'll be offering some more comprehensive documentation going over suggested
> use cases, flows, and more in the coming days.
>
> What matters most for you:
>   - GET geo/nearby_places is now GET geo/search, with some added
> functionality. This is a companion to GET geo/reverse_geocode, that's ideal
> for using in conjunction with a place selection UI.
>     Read all about it at :http://bit.ly/dvNmYB
>     - A query parameter called "query" lets you do textual matching when
> trying to find a place
>     - A query parameter called "ip" lets you do a lookup based on an IP
> address
>     - You can fine tune results with granularity, accuracy, and the
> contained_within parameter, which allows you to identify a place_id
> (matching something like a city), and only search for places within that
> place.
>
>   -  tags in XML output, "place" attribute in JSON output:
>
> Tweets that have a place_id associated with them can now contain some
> additional information not available in the past, including some attributes
> that further describe the location.
>
> Some common place/attributes you might start seeing:
>   - name
>   - street_address
>   - locality
>   - region
>   - phone
>   - postal_code
>   - twitter (a twitter account associated with the place)
>   - cross_streets
>
> Attribute key names can be variant. These are just some of the attribute
> keys you will see, with much more to come.
>
>     Here's a quick XML representation of a status with a place:
>     
>       Mon Jun 14 23:30:14 + 2010
>       16184038366
>       I'm testing out places integrations. Can you hear me Planet
> Houston? I'm at the Epicenter. (psyche)
>       web
>       false
>       
>       
>       false
>       
>       
>         819797
>         Taylor Singletary
>         episod
>         iPhone: 37.778181,-122.397971
>         Reality Technician, Developer Advocate at Twitter,
> displeased at Planet Houston
>         
> http://a1.twimg.com/profile_images/989643540/zod_normal.jpg
> 
>         http://bit.ly/5w7P88
>         false
>         1461
>         00
>         00
>         731673
>         007ffe
>         bb0e79
>         1420
>         Wed Mar 07 22:23:19 + 2007
>         254
>         -28800
>         Pacific Time (US & Canada)
>         
> http://a3.twimg.com/profile_background_images/19651315/fiberoptics.jpg
> 
>         true
>         false
>         true
>         false
>         false
>         6477
>         en
>         false
>       
>       
>       
>       http://www.georss.org/georss";>
>         a851ec943d3a27c5
>         Epicenter Cafe
>         Epicenter Cafe, San Francisco
>         poi
>         http://api.twitter.com/1/geo/id/a851ec943d3a27c5.json
>         
>           
>             street_address
>             764 Harrison St
>           
>         
>         
>           37.781343 -122.399142 37.781343 -122.399142
> 37.781343 -122.399142 37.781343 -122.399142
>         
>         The United States of America
>       
>       
>       
>     
>
>     And here's the JSON representation:
>     {
>         "in_reply_to_user_id": null,
>         "geo": null,
>         "source": "web",
>         "created_at": "Mon Jun 14 23:30:14 + 2010",
>         "place": {
>             "place_type": "poi",
>             "country_code": "US",
>             "attributes": {
>                 "street_address": "764 Harrison St"
>             },
>             "country": "The United States of America",
>             "full_name": "Epicenter Cafe, San Francisco",
>             "url": "http://api.twitter.com/1/geo/id/a851ec943d3a27c5.json";,
>             "name": "Epicenter Cafe",
>             "id": "a851ec943d3a27c5",
>             "bounding_box": {
>                 "type": "Polygon",
>                 "coordinates": [[[ - 122.399142, 37.781343], [ - 122.399142,
> 37.781343], [ - 122.399142, 37.781343], [ - 122.399142, 37.781343]]]
>             }
>         },
>         "in_reply_to_screen_name": null,
>         "favorited": false,
>         "truncated": false,
>         "annotations": null,
>         "user": {
>             "profile_background_image_url": 
> "http://a3.twimg.com/profile_background_images/19651315/fiberoptics.jpg";,
>             "profile_image_url": 
> "http://a1.twimg.com/profile_images/989643540/zod_normal.jpg";,
>             "description": "Reali

RE: [twitter-dev] 502 Bad Gateway when trying to receive xml results

2010-06-15 Thread Tom Fulcher
Thanks so much for letting me know! That should've been my first port of
call! Check if the fail whale was swimming!

 

From: twitter-development-talk@googlegroups.com
[mailto:twitter-development-t...@googlegroups.com] On Behalf Of Rajiv VermaT
Sent: Tuesday, 15 June 2010 3:07 PM
To: twitter-development-talk@googlegroups.com
Subject: Re: [twitter-dev] 502 Bad Gateway when trying to receive xml
results

 

For now, Twitter is down since the last couple of hours

On Tue, Jun 15, 2010 at 10:33 AM, thomen  wrote:

Hi Guys,
I've got an asp.net usercontrol to display twitter feeds.

It requests the xml using this url and then parsing it: "http://
twitter.com/statuses/user_timeline.xml?
screen_name=INSERTUSERNAMEHERE&count=INSERTPOSTCOUNTHERE";

ie "http://twitter.com/statuses/user_timeline.xml?
screen_name=ladygaga&count=5";

public List GetStatusUpdates(string screenName, int
count)
{
   string url = String.Format(StatusesUserTimeline, screenName, count);
//this becomes something like:
http://twitter.com/statuses/user_timeline.xml?screen_name=ladygaga

&count=5
   string xml = FetchXmlFromUrl(url);

   return CreateStatusObjectsFromXml(xml, count);
}

protected virtual string FetchXmlFromUrl(string url)
   {
   using (WebClient client = new WebClient())
   using (Stream s = client.OpenRead(url))
   using (StreamReader sr = new StreamReader(s))
   {
   return sr.ReadToEnd();
   }
   }

etc etc (if you need more code I can provide)

Just starting over the weekend on most of our sites we're now getting
the response: The remote server returned an error: (502) Bad Gateway
when trying to fetch the xml from the url

just wondering what would cause the 502???

the usercontrol is cached so we don't exceed the request limit..




-- 
Thanks & Regards
Rajiv Verma
Bangalore
E-Mail: rajiv@gmail.com
Ph: +91-92430-12766
Go Green, Use minimum natural resources! 



[twitter-dev] Crossdomain.xml on twitter.com/statuses

2010-06-15 Thread kerstinlu
Why is crossdomain limiting access only from api.twitter.com and so
one.
see

Thy is it not changing crossdomain for authenticated users?

I try do access the rest api over Silverlight, which only works with
OOB fulltrust.


[twitter-dev]

2010-06-15 Thread Jeremy Darling
http://3w5w52se4mj.nruywgakip.com