How do I uninstall/reinstall twurl? (was Re: [twitter-dev] twurl is getting Read-only application cannot POST)

2011-01-05 Thread TJ Luoma
On Wed, Jan 5, 2011 at 2:31 AM, Abraham Williams 4bra...@gmail.com wrote:
 At this point I would recommend creating a new application. If you are still
 having issues deleting the existing one you should be able to rename it to
 something else and delete it later.

I had the same idea. So I did that. Created a new app called twtr.sh

You can download it/view the source here (it's a bash script):
http://luo.ma/sh/twtr

Here is a screenshot of app settings (with private bits white-d out
and read  write status highlighted:

https://img.skitch.com/20110105-xfad1was8ts4fjhhq6dw67iqm1.jpg

Here is a screenshot of my Twitter / Connections

https://img.skitch.com/20110105-t4p6354c94mxn8u295ckn1rwp7.jpg

I authorized twurl with twtr.sh's information.

If I run twtr.sh —verify (which does a simple 'verify credentials')

returns twtr.sh: Verified

twtr.sh --dm tjluoma hello

fails.

But I ran it on another computer (where I hadn't updated the keys) and
—verify worked there too, when it shouldn't have.

I guess the question I have now is:

How do I completely uninstall 'twurl' and then reinstall it?

because the only thing I can guess is that it's screwed up on my
computers somehow.

TjL

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] New twitter in ie8 broken again

2011-01-05 Thread Dean Collins
New twitter in ie8 is broken again, works great in firefox but started
failing in ie8 about 8am this morning.

 

 

 

 

Cheers,

Dean

 

 

 

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Search result is incorrect

2011-01-05 Thread binku
search results is incorret when i search tweets from myself, like
this: http://search.twitter.com/search?q=+from%3Abinku87.  This is
only two results, but definitely my tweets(http://twitter.com/#!/
binku87) is more than two. Everybody has every idea about this?

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: mobile.twitter.com/share not working?

2011-01-05 Thread hendra
Thanks for the explanation. Any idea if this is already in the
roadmap?

On Jan 5, 2:36 am, Matt Harris thematthar...@twitter.com wrote:
 The Tweet Button doesn't have a custom mobile view.
 Generally when a mobile view is supported Twitter.com will handle the
 redirect for you. This is because paths on the mobile site can differ from
 those on twitter.com

 Best,
 @themattharris
 Developer Advocate, Twitterhttp://twitter.com/themattharris







 On Wed, Dec 29, 2010 at 10:44 PM, hendra hendra.af...@gmail.com wrote:
  Hi,

  I'm using the Tweet Button to share links on a mobile-friendly site,
  however when users clicked on the link, it goes to the full page which
  doesn't look good on mobile browsers. Simply changing the url from
  twitter.com/share?... to mobile.twitter.com/share?.. doesn't seem to
  work, there's a warning that said Hold up! Sorry, the profile you
  were trying to view was suspended due to strange activity.

  Any help?

  --
  Twitter developer documentation and resources:http://dev.twitter.com/doc
  API updates via Twitter:http://twitter.com/twitterapi
  Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
  Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Problem with twitter update status message

2011-01-05 Thread Muzafar Shah
Greetings,

i want to use twitter API for update status from my website. i don't
want that i should be authenticated everytime whenever i am posting
status from my website. i am using the basic authenticates which just
need username and password and its gives me the following error,

Could not post your Tweet to Twitter.

and the http code: 401.

i am using this:

$username = ($_POST['t_user']);
$password = ($_POST['t_pass']);
$message = ($_POST['t_update']);

$url = 'http://twitter.com/statuses/update.xml';
$curl_handle = curl_init();
curl_setopt($curl_handle, CURLOPT_URL, $url);
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl_handle, CURLOPT_POST, 1);
curl_setopt($curl_handle, CURLOPT_POSTFIELDS, status=$message);
curl_setopt($curl_handle, CURLOPT_USERPWD, $username:$password);
$buffer = curl_exec($curl_handle);
curl_close($curl_handle);

please lead me, i really need your help.

thanks.

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Tweet Button share URL fails on mobile

2011-01-05 Thread thobau
I am evaluating the Tweet Button share URL (http://twitter.com/share?
url=...) for usage on mobile phones. When opening the URL on a Nokia
N95 with passing some value for the url parameter, I am replied with a
Basic authentication login (NOT the twitter web login). I checked what
might be the reason by tracing the HTTP requests and responses passed
between a (desktop) browser and the twitter service when opening the
same URL and noticed the following:

When passing no url parameter (or one with empty value), the service
returns HTTP status code 403, but returns HTML content nevertheless.
When passing non-empty url parameter value, the service returns HTTP
status code 401, but returns HTML content nevertheless (and does not
return the mandatory WWW-authenticate challenge header). While the 403
is ignored and the content (i.e. invalid URL message) is displayed
correctly on both desktop and mobile browsers, the mobile browser on
the Nokia N95 reacts to the 401 by replying with a Basic
authentication login. Of course, there is no way to pass this
challenge successfully. So question is: Why are these HTTP status
codes returned at all but not a 200 OK instead?

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] limit detection

2011-01-05 Thread Trevor Dean
What's the best way to test limit detection code?  I want to make sure that
when the DM limit or request limit is reached my code handles this properly.
 I was wondering if there is a better way then just sending 250 DM's and
then waiting for the error or making more than 150 requests/hour and then
waiting for the error?  I don't want to raise any flags during my testing so
I was wondering how you guy's test?

Thanks,

Trevor

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


RE: [twitter-dev] Search result is incorrect

2011-01-05 Thread Dean Collins
I'm also having the same issue for
http://twitter.com/#!/search/from%3Alivetvchat

I read help but it just says check @Support . lol the tweets for
@support are no longer in the timeline.

 
Cheers,
Dean
 
 

-Original Message-
From: twitter-development-talk@googlegroups.com
[mailto:twitter-development-t...@googlegroups.com] On Behalf Of binku
Sent: Wednesday, January 05, 2011 12:45 AM
To: Twitter Development Talk
Subject: [twitter-dev] Search result is incorrect

search results is incorret when i search tweets from myself, like
this: http://search.twitter.com/search?q=+from%3Abinku87.  This is
only two results, but definitely my tweets(http://twitter.com/#!/
binku87) is more than two. Everybody has every idea about this?

-- 
Twitter developer documentation and resources:
http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker:
http://code.google.com/p/twitter-api/issues/list
Change your membership to this group:
http://groups.google.com/group/twitter-development-talk

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] Search result is incorrect

2011-01-05 Thread Adam Green
The search API only goes back about 7 days. Older tweets are not returned.

On Wed, Jan 5, 2011 at 12:45 AM, binku bink...@gmail.com wrote:
 search results is incorret when i search tweets from myself, like
 this: http://search.twitter.com/search?q=+from%3Abinku87.  This is
 only two results, but definitely my tweets(http://twitter.com/#!/
 binku87) is more than two. Everybody has every idea about this?

 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group: 
 http://groups.google.com/group/twitter-development-talk




-- 
Adam Green
Twitter API Consultant and Trainer
http://140dev.com
@140dev

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] limit detection

2011-01-05 Thread Taylor Singletary
These are some of the error codes that you may receive when creating direct
messages (aside from common error codes):

when the quota has run dry - HTTP 403 - There was an error sending your
message: We know you have a lot to say, but you can only send so many direct
messages per day. (a href=
http://support.twitter.com/articles/15364-about-twitter-limits-update-api-dm-and-following;click
here/a for more info.) (or something close to this, it may get truncated)

when it's not allowed due to the relationship - HTTP 403 - You cannot send
messages to users who are not following you.

when it's too long - HTTP 403 - The text of your direct message is over 140
characters.

missing parameters - HTTP 400 - Invalid request.

when an unknown error occurs - HTTP 500 - There was an error sending your
message.

It'd be best in your unit tests not to hit the API at all, but instead
provide mock API scenarios.

Taylor

On Wed, Jan 5, 2011 at 6:48 AM, Trevor Dean trevord...@gmail.com wrote:

 What's the best way to test limit detection code?  I want to make sure that
 when the DM limit or request limit is reached my code handles this properly.
  I was wondering if there is a better way then just sending 250 DM's and
 then waiting for the error or making more than 150 requests/hour and then
 waiting for the error?  I don't want to raise any flags during my testing so
 I was wondering how you guy's test?

 Thanks,

 Trevor

 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk


-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] limit detection

2011-01-05 Thread Trevor Dean
That's perfect,
Thanks

Trevor Dean | Director . big time design  communication inc. 
tre...@bigtimedesign.ca | 647 234 8198

Visit http://www.bigtimedesign.ca for more information

Follow me: @trevor_dean | @btdc

On 2011-01-05, at 10:15 AM, Taylor Singletary taylorsinglet...@twitter.com 
wrote:

 These are some of the error codes that you may receive when creating direct 
 messages (aside from common error codes):
 
 when the quota has run dry - HTTP 403 - There was an error sending your 
 message: We know you have a lot to say, but you can only send so many direct 
 messages per day. (a 
 href=http://support.twitter.com/articles/15364-about-twitter-limits-update-api-dm-and-following;click
  here/a for more info.) (or something close to this, it may get truncated)
 
 when it's not allowed due to the relationship - HTTP 403 - You cannot send 
 messages to users who are not following you.
 
 when it's too long - HTTP 403 - The text of your direct message is over 140 
 characters.
 
 missing parameters - HTTP 400 - Invalid request.
 
 when an unknown error occurs - HTTP 500 - There was an error sending your 
 message.
 
 It'd be best in your unit tests not to hit the API at all, but instead 
 provide mock API scenarios.
 
 Taylor
 
 On Wed, Jan 5, 2011 at 6:48 AM, Trevor Dean trevord...@gmail.com wrote:
 What's the best way to test limit detection code?  I want to make sure that 
 when the DM limit or request limit is reached my code handles this properly.  
 I was wondering if there is a better way then just sending 250 DM's and then 
 waiting for the error or making more than 150 requests/hour and then waiting 
 for the error?  I don't want to raise any flags during my testing so I was 
 wondering how you guy's test?
 
 Thanks,
 
 Trevor
 -- 
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group: 
 http://groups.google.com/group/twitter-development-talk
 
 -- 
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group: 
 http://groups.google.com/group/twitter-development-talk

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] Search result is incorrect

2011-01-05 Thread bin qin
Thanks. But if the search API only return latest 7 days tweets, Since this
date should be limit to between today to 7 day defore in this page
http://search.twitter.com/advanced, or there will be a puzzle to user.
BTW, If we can't use the search API to get all tweets, how to get  User1 and
User2 top 10 tweets(sort by date)?
(if the search API can return all tweets, i can use this search
http://search.twitter.com/search?q=+from%3AUser1+OR+from%3AUser2rpp=25 to
get the tweets i need)
On Wed, Jan 5, 2011 at 11:11 PM, Adam Green 140...@gmail.com wrote:

 The search API only goes back about 7 days. Older tweets are not returned.

 On Wed, Jan 5, 2011 at 12:45 AM, binku bink...@gmail.com wrote:
  search results is incorret when i search tweets from myself, like
  this: http://search.twitter.com/search?q=+from%3Abinku87.  This is
  only two results, but definitely my 
  tweets(http://twitter.com/#!/http://twitter.com/#%21/
  binku87) is more than two. Everybody has every idea about this?
 
  --
  Twitter developer documentation and resources:
 http://dev.twitter.com/doc
  API updates via Twitter: http://twitter.com/twitterapi
  Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
  Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk
 



 --
 Adam Green
 Twitter API Consultant and Trainer
 http://140dev.com
 @140dev

 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk


-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] RE: New twitter in ie8 broken again

2011-01-05 Thread Dean Collins
Huh well that IS interesting.

 

I have no idea why but someone just emailed me to answer my question
about New Twitter being broken for IE8.

 

They told me if you turn on InPrivate browsing on IE8 that new twitter
works Just tried it for my account
http://www.Twitter.com/LiveNascarChat  came up perfect.

 

Can someone from twitter explain what in their code broke this morning
at 8am that is negated by inprivate browsing?

 

 

 

 

Cheers,

Dean

 

 



From: Dean Collins 
Sent: Wednesday, January 05, 2011 8:23 AM
To: twitter-development-talk@googlegroups.com
Subject: New twitter in ie8 broken again

 

New twitter in ie8 is broken again, works great in firefox but started
failing in ie8 about 8am this morning.

 

 

 

 

Cheers,

Dean

 

 

 

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] twitter_oauth gem problem

2011-01-05 Thread Gary Zukowski
Having a problem with the twitter_oauth gem.  It seems to work fine for the
update method and others, e.g. 

chan = Jobchannel.find(:last, :conditions = ['access_token IS NOT NULL'])

client = TwitterOAuth::Client.new(

:consumer_key = SAFETWEET_CONSUMER_KEY,

:consumer_secret = SAFETWEET_CONSUMER_SECRET,

:token = chan.safetweet_access_token, 

:secret = chan.safetweet_access_secret

)

ret = client.update('test')

 

but when I use the update profile method, I get this:

 ret = client.update_profile(:description = 'test')

 JSON::ParserError: 665: unexpected token at '?xml version=1.0
encoding=UTF-8

hash

  request/1/account/update_profile/request

  errorCould not authenticate with OAuth./error

/hash

'

from
/home/deploy/.gem/ruby/1.8/gems/json_pure-1.2.2/lib/json/common.rb:

from
/home/deploy/.gem/ruby/1.8/gems/json_pure-1.2.2/lib/json/common.rb:

from
/opt/ruby/lib/ruby/gems/1.8/gems/twitter_oauth-0.4.3/lib/twitter_oa

from
/opt/ruby/lib/ruby/gems/1.8/gems/twitter_oauth-0.4.3/lib/twitter_oa

from (irb):12

 

Any ideas?

 

 

 

Thanks,

 

Gary Zukowski

TweetMyJOBS.com

@garyzukowski

@tweetmyjobs

LinkedIn http://www.linkedin.com/profile/view?id=414054 

704-544-9370

Listen to the TweetMyJOBS Holiday Album at http://www.tweetmyjobs.com/album

 

Check out TweetMyJOBS on MSNBC's Dylan Ratigan Show:
http://www.msnbc.msn.com/id/31510813/#39313587

 

This email and any files transmitted with it are confidential and intended
solely for the use of the individual or entity to whom they are addressed.
If you have received this email in error, please notify the system manager.
This message contains confidential information and is intended only for the
individual named. If you are not the named addressee, you should not
disseminate, distribute or copy this email. Please notify the sender
immediately by email if you have received this email by mistake and delete
this email from your system. If you are not the intended recipient, you are
notified that disclosing, copying, distributing or taking any action in
reliance on the contents of this information is strictly prohibited.

 

 

 

From: Dean Collins [mailto:d...@cognation.net] 
Sent: Wednesday, January 05, 2011 11:00 AM
To: twitter-development-talk@googlegroups.com
Subject: [twitter-dev] RE: New twitter in ie8 broken again

 

Huh well that IS interesting.

 

I have no idea why but someone just emailed me to answer my question about
New Twitter being broken for IE8.

 

They told me if you turn on InPrivate browsing on IE8 that new twitter
works.. Just tried it for my account http://www.Twitter.com/LiveNascarChat
 came up perfect.

 

Can someone from twitter explain what in their code broke this morning at
8am that is negated by inprivate browsing?

 

 

 

 

Cheers,

Dean

 

 

  _  

From: Dean Collins 
Sent: Wednesday, January 05, 2011 8:23 AM
To: twitter-development-talk@googlegroups.com
Subject: New twitter in ie8 broken again

 

New twitter in ie8 is broken again, works great in firefox but started
failing in ie8 about 8am this morning.

 

 

 

 

Cheers,

Dean

 

 

 

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker:
http://code.google.com/p/twitter-api/issues/list
Change your membership to this group:
http://groups.google.com/group/twitter-development-talk

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: incorrect created_at times?

2011-01-05 Thread jenny
ack, sorry- sinceid issue was me being stupid with since_id/count
params. still wondering what's going on with the incorrect created_at
times though.

On Jan 4, 5:26 pm, jenny jloo...@gmail.com wrote:
 lately I've noticed tweets with times out of order on twitter.com. for
 example, earlier todayhttp://twitter.com/#!/warrenellisshowed:

 Previous Marvel EIC Joe Quesada becomes Chief Creative Officer, to be
 addressed as Comandante
 4 hours agohttp://twitter.com/#!/warrenellis/status/22352255088852993

 Axel Alonso becomes new Editor In Chief of Marvel Comics, institutes
 celebratory beatings companywide
 3 hours agohttp://twitter.com/#!/warrenellis/status/22351328088956928
 ...
 The brilliant novelist @steveaylett is guest writer today at my 
 site:http://bit.ly/epD01V
 4 hours agohttp://twitter.com/#!/warrenellis/status/22332045711646720

 calling twurl /1/statuses/show/ for each of the above ids yields:
 22352255088852993:
 created_atTue Jan 04 20:29:07 + 2011/created_at
 statuses_count12853/statuses_count

 22351328088956928:
 created_atTue Jan 04 21:07:31 + 2011/created_at
 statuses_count12852/statuses_count

 22332045711646720:
 created_atTue Jan 04 20:00:10 + 2011/created_at
 statuses_count12851/statuses_count

 Is this expected?  they're correctly sorted by status id, but the
 created_at times are out of order, and incorrect judging by the
 statuses_count. It looks like created_at values are used behind the
 scenes in some REST queries using sinceid, since if I try to get
 statuses since the middle tweet above, it won't include the first
 tweet, which has a higher status id but earlier created_at time:
 $ twurl /1/statuses/home_timeline.xml?sinceid=22351328088956928 | grep
 22352255088852993
 $

 (to reproduce the sinceid bug you have to use tweets from people
 you're already following; if I start following warrenellis from
 another account after those tweets have happened, the above call
 includes the top tweet.)

 another example from my home timeline, in order shown on twitter.com
 earlier today:
 codinghorror Jeff Atwood
 A call to all community minded sysadminshttp://goo.gl/Vfo8P
 4 hours ago
 (http://twitter.com/#!/codinghorror/status/22357712645918720,
 created_at = Tue Jan 04 18:24:28 + 2011)

 arstechnica Ars Technica
 Warrantless cell phone search gets a green light in 
 California:http://arst.ch/npoby @ejacqui
 3 hours ago
 (http://twitter.com/#!/arstechnica/status/22357602243448833,
 created_at = Tue Jan 04 19:51:52 + 2011)

 BoingBoing Boing Boing
 In Egypt, an iPrayerhttp://bit.ly/gsFfHp
 2 hours ago
 (http://twitter.com/#!/BoingBoing/status/22357128580694016,
 created_at = Tue Jan 04 21:08:45 + 2011)

 BoingBoing Boing Boing
 Cute, friendly, non-threatening bear hathttp://bit.ly/gKsaAP
 4 hours ago
 (http://twitter.com/#!/BoingBoing/status/22357124545773568,
 created_at = Tue Jan 04 19:06:26 + 2011)

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] Re: incorrect created_at times?

2011-01-05 Thread Matt Harris
Hi Jenny,

It does seem there is something wrong with those date stamps. I've asked the
engineers to look into it.

Best,
@themattharris
Developer Advocate, Twitter
http://twitter.com/themattharris


On Wed, Jan 5, 2011 at 11:01 AM, jenny jloo...@gmail.com wrote:

 ack, sorry- sinceid issue was me being stupid with since_id/count
 params. still wondering what's going on with the incorrect created_at
 times though.

 On Jan 4, 5:26 pm, jenny jloo...@gmail.com wrote:
  lately I've noticed tweets with times out of order on twitter.com. for
  example, earlier todayhttp://twitter.com/#!/warrenellisshowed:
 
  Previous Marvel EIC Joe Quesada becomes Chief Creative Officer, to be
  addressed as Comandante
  4 hours agohttp://twitter.com/#!/warrenellis/status/22352255088852993
 
  Axel Alonso becomes new Editor In Chief of Marvel Comics, institutes
  celebratory beatings companywide
  3 hours agohttp://twitter.com/#!/warrenellis/status/22351328088956928
  ...
  The brilliant novelist @steveaylett is guest writer today at my site:
 http://bit.ly/epD01V
  4 hours agohttp://twitter.com/#!/warrenellis/status/22332045711646720
 
  calling twurl /1/statuses/show/ for each of the above ids yields:
  22352255088852993:
  created_atTue Jan 04 20:29:07 + 2011/created_at
  statuses_count12853/statuses_count
 
  22351328088956928:
  created_atTue Jan 04 21:07:31 + 2011/created_at
  statuses_count12852/statuses_count
 
  22332045711646720:
  created_atTue Jan 04 20:00:10 + 2011/created_at
  statuses_count12851/statuses_count
 
  Is this expected?  they're correctly sorted by status id, but the
  created_at times are out of order, and incorrect judging by the
  statuses_count. It looks like created_at values are used behind the
  scenes in some REST queries using sinceid, since if I try to get
  statuses since the middle tweet above, it won't include the first
  tweet, which has a higher status id but earlier created_at time:
  $ twurl /1/statuses/home_timeline.xml?sinceid=22351328088956928 | grep
  22352255088852993
  $
 
  (to reproduce the sinceid bug you have to use tweets from people
  you're already following; if I start following warrenellis from
  another account after those tweets have happened, the above call
  includes the top tweet.)
 
  another example from my home timeline, in order shown on twitter.com
  earlier today:
  codinghorror Jeff Atwood
  A call to all community minded sysadminshttp://goo.gl/Vfo8P
  4 hours ago
  (http://twitter.com/#!/codinghorror/status/22357712645918720,
  created_at = Tue Jan 04 18:24:28 + 2011)
 
  arstechnica Ars Technica
  Warrantless cell phone search gets a green light in California:
 http://arst.ch/npoby @ejacqui
  3 hours ago
  (http://twitter.com/#!/arstechnica/status/22357602243448833,
  created_at = Tue Jan 04 19:51:52 + 2011)
 
  BoingBoing Boing Boing
  In Egypt, an iPrayerhttp://bit.ly/gsFfHp
  2 hours ago
  (http://twitter.com/#!/BoingBoing/status/22357128580694016,
  created_at = Tue Jan 04 21:08:45 + 2011)
 
  BoingBoing Boing Boing
  Cute, friendly, non-threatening bear hathttp://bit.ly/gKsaAP
  4 hours ago
  (http://twitter.com/#!/BoingBoing/status/22357124545773568,
  created_at = Tue Jan 04 19:06:26 + 2011)

 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk


-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Error starting today

2011-01-05 Thread cootcraig
Just a temporary glitch?

get http://api.twitter.com/1/favorites.json?include_entities=1page=1
= 401: {request:\/1\/favorites.json?
include_entities=1page=1,error:Timestamp out of bounds}

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] Error starting today

2011-01-05 Thread Matt Harris
Hey Craig,

There are no known issues with timestamps. What is the timestamp you are
sending to us?

If your timestamp isn't close to the time of our servers (GMT) we will throw
this error.

Best,
@themattharris
Developer Advocate, Twitter
http://twitter.com/themattharris


On Wed, Jan 5, 2011 at 1:15 PM, cootcraig cr...@coot.net wrote:

 Just a temporary glitch?

 get http://api.twitter.com/1/favorites.json?include_entities=1page=1
 = 401: {request:\/1\/favorites.json?
 include_entities=1page=1,error:Timestamp out of bounds}

 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk


-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] Re: mobile.twitter.com/share not working?

2011-01-05 Thread Matt Harris
It's something the team has on the feature request list but they have not
decided if the feature will be implemented.

Best,
@themattharris
Developer Advocate, Twitter
http://twitter.com/themattharris


On Wed, Jan 5, 2011 at 1:40 AM, hendra hendra.af...@gmail.com wrote:

 Thanks for the explanation. Any idea if this is already in the
 roadmap?

 On Jan 5, 2:36 am, Matt Harris thematthar...@twitter.com wrote:
  The Tweet Button doesn't have a custom mobile view.
  Generally when a mobile view is supported Twitter.com will handle the
  redirect for you. This is because paths on the mobile site can differ
 from
  those on twitter.com
 
  Best,
  @themattharris
  Developer Advocate, Twitterhttp://twitter.com/themattharris
 
 
 
 
 
 
 
  On Wed, Dec 29, 2010 at 10:44 PM, hendra hendra.af...@gmail.com wrote:
   Hi,
 
   I'm using the Tweet Button to share links on a mobile-friendly site,
   however when users clicked on the link, it goes to the full page which
   doesn't look good on mobile browsers. Simply changing the url from
   twitter.com/share?... to mobile.twitter.com/share?.. doesn't seem to
   work, there's a warning that said Hold up! Sorry, the profile you
   were trying to view was suspended due to strange activity.
 
   Any help?
 
   --
   Twitter developer documentation and resources:
 http://dev.twitter.com/doc
   API updates via Twitter:http://twitter.com/twitterapi
   Issues/Enhancements Tracker:
  http://code.google.com/p/twitter-api/issues/list
   Change your membership to this group:
  http://groups.google.com/group/twitter-development-talk

 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk


-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] RE: New twitter in ie8 broken again

2011-01-05 Thread Tom van der Woerdt
Sounds like a cookie/cache issue.

Tom


Sent from my iPhone

On Jan 5, 2011, at 5:00 PM, Dean Collins d...@cognation.net wrote:

 Huh well that IS interesting.
 
  
 
 I have no idea why but someone just emailed me to answer my question about 
 New Twitter being broken for IE8.
 
  
 
 They told me if you turn on “InPrivate” browsing on IE8 that new twitter 
 works…. Just tried it for my account http://www.Twitter.com/LiveNascarChat 
  came up perfect.
 
  
 
 Can someone from twitter explain what in their code broke this morning at 8am 
 that is negated by inprivate browsing?
 
  
 
  
 
  
 
  
 
 Cheers,
 
 Dean
 
  
 
  
 
 From: Dean Collins 
 Sent: Wednesday, January 05, 2011 8:23 AM
 To: twitter-development-talk@googlegroups.com
 Subject: New twitter in ie8 broken again
 
  
 
 New twitter in ie8 is broken again, works great in firefox but started 
 failing in ie8 about 8am this morning.
 
  
 
  
 
  
 
  
 
 Cheers,
 
 Dean
 
  
 
  
 
  
 
 -- 
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group: 
 http://groups.google.com/group/twitter-development-talk

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: Error starting today

2011-01-05 Thread cootcraig

 There are no known issues with timestamps. What is the timestamp you are
 sending to us?

I'm not aware I'm sending a timestamp.  I thought the whole request
was
get http://api.twitter.com/1/favorites.json?include_entities=1page=1


 If your timestamp isn't close to the time of our servers (GMT) we will throw
 this error.

 Best,
 @themattharris
 Developer Advocate, Twitterhttp://twitter.com/themattharris

 On Wed, Jan 5, 2011 at 1:15 PM, cootcraig cr...@coot.net wrote:

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] Search result is incorrect

2011-01-05 Thread Tom van der Woerdt
/1/statuses/user_timeline would do that.

Tom


Sent from my iPhone

On Jan 5, 2011, at 4:38 PM, bin qin bink...@gmail.com wrote:

 Thanks. But if the search API only return latest 7 days tweets, Since this 
 date should be limit to between today to 7 day defore in this page 
 http://search.twitter.com/advanced, or there will be a puzzle to user. 
 BTW, If we can't use the search API to get all tweets, how to get  User1 and 
 User2 top 10 tweets(sort by date)?
 (if the search API can return all tweets, i can use this search 
 http://search.twitter.com/search?q=+from%3AUser1+OR+from%3AUser2rpp=25 to 
 get the tweets i need)
 On Wed, Jan 5, 2011 at 11:11 PM, Adam Green 140...@gmail.com wrote:
 The search API only goes back about 7 days. Older tweets are not returned.
 
 On Wed, Jan 5, 2011 at 12:45 AM, binku bink...@gmail.com wrote:
  search results is incorret when i search tweets from myself, like
  this: http://search.twitter.com/search?q=+from%3Abinku87.  This is
  only two results, but definitely my tweets(http://twitter.com/#!/
  binku87) is more than two. Everybody has every idea about this?
 
  --
  Twitter developer documentation and resources: http://dev.twitter.com/doc
  API updates via Twitter: http://twitter.com/twitterapi
  Issues/Enhancements Tracker: 
  http://code.google.com/p/twitter-api/issues/list
  Change your membership to this group: 
  http://groups.google.com/group/twitter-development-talk
 
 
 
 
 --
 Adam Green
 Twitter API Consultant and Trainer
 http://140dev.com
 @140dev
 
 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group: 
 http://groups.google.com/group/twitter-development-talk
 
 -- 
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group: 
 http://groups.google.com/group/twitter-development-talk

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] Re: Error starting today

2011-01-05 Thread Tom van der Woerdt
oauth_timestamp (your oauth library probably does that) is also a timestamp. 
Verify that your server's time is right. If possible, sync via ntp.

Tom


Sent from my iPhone

On Jan 5, 2011, at 11:35 PM, cootcraig cr...@coot.net wrote:

 
 There are no known issues with timestamps. What is the timestamp you are
 sending to us?
 
 I'm not aware I'm sending a timestamp.  I thought the whole request
 was
 get http://api.twitter.com/1/favorites.json?include_entities=1page=1
 
 
 If your timestamp isn't close to the time of our servers (GMT) we will throw
 this error.
 
 Best,
 @themattharris
 Developer Advocate, Twitterhttp://twitter.com/themattharris
 
 On Wed, Jan 5, 2011 at 1:15 PM, cootcraig cr...@coot.net wrote:
 
 -- 
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group: 
 http://groups.google.com/group/twitter-development-talk

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] Tweet Button share URL fails on mobile

2011-01-05 Thread Matt Harris
The browsers currently supported by the Tweet Button are listed on the Tweet
Button FAQ page:
http://dev.twitter.com/pages/tweet_button_faq#browser-support

At the moment, mobile browsers are not included but they should still avoid
confusing behavior.

I've asked the engineers to look into the response codes and if necessary
make changes.

Thanks,
@themattharris
Developer Advocate, Twitter
http://twitter.com/themattharris


On Wed, Jan 5, 2011 at 4:23 AM, thobau tho...@gmx.net wrote:

 I am evaluating the Tweet Button share URL (http://twitter.com/share?
 url=...) for usage on mobile phones. When opening the URL on a Nokia
 N95 with passing some value for the url parameter, I am replied with a
 Basic authentication login (NOT the twitter web login). I checked what
 might be the reason by tracing the HTTP requests and responses passed
 between a (desktop) browser and the twitter service when opening the
 same URL and noticed the following:

 When passing no url parameter (or one with empty value), the service
 returns HTTP status code 403, but returns HTML content nevertheless.
 When passing non-empty url parameter value, the service returns HTTP
 status code 401, but returns HTML content nevertheless (and does not
 return the mandatory WWW-authenticate challenge header). While the 403
 is ignored and the content (i.e. invalid URL message) is displayed
 correctly on both desktop and mobile browsers, the mobile browser on
 the Nokia N95 reacts to the 401 by replying with a Basic
 authentication login. Of course, there is no way to pass this
 challenge successfully. So question is: Why are these HTTP status
 codes returned at all but not a 200 OK instead?

 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk


-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: [twitter-dev] RE: New twitter in ie8 broken again

2011-01-05 Thread Matt Harris
Hey Dean,

I'm unable to reproduce the issue but as Tom said it sounds like a caching
issue. Switching to InPrivate mode is likely to have forced a reload of the
js and css assets. The website team isn't part of the API (they build on top
of it), so if you are having any more issues with the site I recommend
contacting our user support team. They can be reached through this URL:
http://bit.ly/twicket

Best,
@themattharris
Developer Advocate, Twitter
http://twitter.com/themattharris


On Wed, Jan 5, 2011 at 2:33 PM, Tom van der Woerdt i...@tvdw.eu wrote:

 Sounds like a cookie/cache issue.

 Tom


 Sent from my iPhone

 On Jan 5, 2011, at 5:00 PM, Dean Collins d...@cognation.net wrote:

  Huh well that IS interesting.



 I have no idea why but someone just emailed me to answer my question about
 New Twitter being broken for IE8.



 They told me if you turn on “InPrivate” browsing on IE8 that new twitter
 works…. Just tried it for my account
 http://www.twitter.com/LiveNascarChat
 http://www.Twitter.com/LiveNascarChat  came up perfect.



 Can someone from twitter explain what in their code broke this morning at
 8am that is negated by inprivate browsing?









 Cheers,

 Dean




   --

 *From:* Dean Collins
 *Sent:* Wednesday, January 05, 2011 8:23 AM
 *To:* twitter-development-talk@googlegroups.com
 twitter-development-talk@googlegroups.com
 *Subject:* New twitter in ie8 broken again



 New twitter in ie8 is broken again, works great in firefox but started
 failing in ie8 about 8am this morning.









 Cheers,

 Dean







 --
 Twitter developer documentation and resources:
 http://dev.twitter.com/dochttp://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 http://twitter.com/twitterapi
 Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
 http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk
 http://groups.google.com/group/twitter-development-talk

  --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk


-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


Re: How do I uninstall/reinstall twurl? (was Re: [twitter-dev] twurl is getting Read-only application cannot POST)

2011-01-05 Thread Matt Harris
Hey TjL,

Thanks for trying those steps out and for reset those keys for security.

Back to the question in hand.

In your original email [1] the trace from Twurl showed you were using the
consumer key:
EK9yzQy6K8gqzAg0pCaQug

In the screenshot you published later the consumer key was different, which
leads me to believe you are checking the details of one application but
using another.

Twurl supports multiple consumer details and user tokens. To ensure you are
using the correct tokens and secrets you should check which of your accounts
is set as the default. To do this first type:
twurl accounts

The terminal will display all of the accounts authorized for Twurl to use.
The one it is using to make requests is marked as the (default). What you
want to do here is check the consumer key marked as default is the same as
the one for your Read/Write application. If it isn't you can change the
default using the command:
twurl set default screenname

If the screen_name has multiple consumer keys you can use the format:
twurl set default screenname consumerkey

Give that a go and let us know how it goes. For more information on how to
use twurl take a look at the tutorial by running:
twurl -T

Best,
@themattharris



1.
http://groups.google.com/group/twitter-development-talk/browse_thread/thread/57131b5bc02b79bb#

On Wed, Jan 5, 2011 at 12:36 AM, TJ Luoma luo...@gmail.com wrote:

 On Wed, Jan 5, 2011 at 2:31 AM, Abraham Williams 4bra...@gmail.com
 wrote:
  At this point I would recommend creating a new application. If you are
 still
  having issues deleting the existing one you should be able to rename it
 to
  something else and delete it later.

 I had the same idea. So I did that. Created a new app called twtr.sh

 You can download it/view the source here (it's a bash script):
 http://luo.ma/sh/twtr

 Here is a screenshot of app settings (with private bits white-d out
 and read  write status highlighted:

 https://img.skitch.com/20110105-xfad1was8ts4fjhhq6dw67iqm1.jpg

 Here is a screenshot of my Twitter / Connections

 https://img.skitch.com/20110105-t4p6354c94mxn8u295ckn1rwp7.jpg

 I authorized twurl with twtr.sh's information.

 If I run twtr.sh —verify (which does a simple 'verify credentials')

 returns twtr.sh: Verified

 twtr.sh --dm tjluoma hello

 fails.

 But I ran it on another computer (where I hadn't updated the keys) and
 —verify worked there too, when it shouldn't have.

 I guess the question I have now is:

How do I completely uninstall 'twurl' and then reinstall it?

 because the only thing I can guess is that it's screwed up on my
 computers somehow.

 TjL

 --
 Twitter developer documentation and resources: http://dev.twitter.com/doc
 API updates via Twitter: http://twitter.com/twitterapi
 Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
 Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk


-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Parsing response for osapi.http.get calls

2011-01-05 Thread deJu
Hello,

Does the Twitter API fully support the osapi.http methods defined in
the OpenSocial 0.9+ spec?

When I use the older (now deprecated) method
gadgets.io.makeRequest(url, callback, params) and I haven't yet
granted access to the gadget, the object returned contains
response.oauthApprovalUrl, which is where I redirect the user to.

However, when I use osapi.http.get(params).execute(callback) and I
haven't yet granted access to the gadget, the returned JSON object
just informs of a generic error:

[{id:http.get,error:{message:internalError: String index out
of range: 0,code:500}}]


Here's the exact code I'm calling:

var callback = function(response) {
if (response.oauthApprovalUrl) { ... }
};

osapi.http.get({
'href' : 'http://api.twitter.com/1/account/
verify_credentials.json',
'format' : 'json',
'authz' : 'oauth',
'oauth_service_name' : 'twitter'
}).execute(callback);

It seems to me that the Twitter API isn't returning the proper
information.  Any ideas?

Thanks,
Dennis

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: Error starting today

2011-01-05 Thread cootcraig


On Jan 5, 3:37 pm, Tom van der Woerdt i...@tvdw.eu wrote:
 oauth_timestamp (your oauth library probably does that) is also a timestamp. 
 Verify that your server's time is right. If possible, sync via ntp.


Thanks, that must be it.  I updated my time and it now works.  My
development platform is Ubuntu VMware image that I sometimes suspend.
I'm guessing the system time is not always accurate when starting from
suspend.  I will look into how the image is syncing time.

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


RE: [twitter-dev] RE: New twitter in ie8 broken again

2011-01-05 Thread Dean Collins
This is the error.

 

 

 

Webpage error details

 

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1;
Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR
3.5.30729; .NET CLR 1.1.4322; .NET4.0C)

Timestamp: Thu, 6 Jan 2011 01:36:21 UTC

 

Line: 46

Char: 24529

Code: 0

URI: http://a0.twimg.com/a/1294266417/javascripts/phoenix.bundle.js

 

 

 

 

 

I've filed a ticket at  http://bit.ly/twicket but lucky 8 ball says
reply message to ticketunlikely.

 

 

Cheers,

Dean

 

 



From: twitter-development-talk@googlegroups.com
[mailto:twitter-development-t...@googlegroups.com] On Behalf Of Matt
Harris
Sent: Wednesday, January 05, 2011 6:54 PM
To: twitter-development-talk@googlegroups.com
Subject: Re: [twitter-dev] RE: New twitter in ie8 broken again

 

Hey Dean,

 

I'm unable to reproduce the issue but as Tom said it sounds like a
caching issue. Switching to InPrivate mode is likely to have forced a
reload of the js and css assets. The website team isn't part of the API
(they build on top of it), so if you are having any more issues with the
site I recommend contacting our user support team. They can be reached
through this URL:

http://bit.ly/twicket

 

Best,
@themattharris
Developer Advocate, Twitter
http://twitter.com/themattharris



On Wed, Jan 5, 2011 at 2:33 PM, Tom van der Woerdt i...@tvdw.eu wrote:

Sounds like a cookie/cache issue.

 

Tom

 


Sent from my iPhone


On Jan 5, 2011, at 5:00 PM, Dean Collins d...@cognation.net wrote:

Huh well that IS interesting.

 

I have no idea why but someone just emailed me to answer my
question about New Twitter being broken for IE8.

 

They told me if you turn on InPrivate browsing on IE8 that new
twitter works Just tried it for my account
http://www.twitter.com/LiveNascarChat
http://www.Twitter.com/LiveNascarChat  came up perfect.

 

Can someone from twitter explain what in their code broke this
morning at 8am that is negated by inprivate browsing?

 

 

 

 

Cheers,

Dean

 

 





From: Dean Collins 
Sent: Wednesday, January 05, 2011 8:23 AM
To: mailto:twitter-development-talk@googlegroups.com
twitter-development-talk@googlegroups.com
Subject: New twitter in ie8 broken again

 

New twitter in ie8 is broken again, works great in firefox but
started failing in ie8 about 8am this morning.

 

 

 

 

Cheers,

Dean

 

 

 

-- 
Twitter developer documentation and resources:
http://dev.twitter.com/doc http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
http://twitter.com/twitterapi
Issues/Enhancements Tracker:
http://code.google.com/p/twitter-api/issues/list
http://code.google.com/p/twitter-api/issues/list
Change your membership to this group:
http://groups.google.com/group/twitter-development-talk
http://groups.google.com/group/twitter-development-talk

-- 
Twitter developer documentation and resources:
http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker:
http://code.google.com/p/twitter-api/issues/list
Change your membership to this group:
http://groups.google.com/group/twitter-development-talk

 

-- 
Twitter developer documentation and resources:
http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker:
http://code.google.com/p/twitter-api/issues/list
Change your membership to this group:
http://groups.google.com/group/twitter-development-talk

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Re: User_timeline returns different amount of tweets for each user

2011-01-05 Thread Cisneiros
Sorry, I could not send a ticket, got this: There was an error
preventing ticket submission. Please try again later.
Tried more than once and got nothing.

I'm really blind here, have no idea what's happening... Anyone can
help?

Thanks,
Alexandre Cisneiros.

On Jan 4, 4:27 pm, Matt Harris thematthar...@twitter.com wrote:
 Hi Alexandre,

 You should be able to access up to 3200 Tweets (including Retweets) for your
 account though the user_timeline method. If this isn't the case let our user
 support team know so they can check nothing has got confused in your
 account. You can contact them through:
    http://bit.ly/twicket

 Best,
 @themattharris
 Developer Advocate, Twitterhttp://twitter.com/themattharris







 On Mon, Jan 3, 2011 at 7:17 PM, Cisneiros alexan...@cisneiros.com wrote:
  Hello.

  I'm developing an application that has to analyse as much tweets of a
  user as possible (all of them would be the optimal case, but the API
  returns up to 3200 tweets, but no big deal).

  The problem is that I'm getting a different amount of tweets for every
  user I try. With my personal account, I can get about 470 tweets (3
  pages of 200 tweets). When I try to get the 4th page, it returns
  blank. You can try it out with my account;

 http://api.twitter.com/1/statuses/user_timeline/Cisneiros.json?count=...
  --- has tweets

 http://api.twitter.com/1/statuses/user_timeline/Cisneiros.json?count=...
  --- hasn't tweets (as of jan 4rd, 2011 / 12:11 AM -03:00)

  I tried to get my tweets while authenticated on my girlfriend's
  account, instead of mine, but got the same results. No matter who is
  authenticated, I get the same number of tweets for every user I try
  (but they differ between themselves).

  If I try another user, I can get more pages (like 15 pages of 200, for
  example). Other users just return 2 pages...
  I really have no idea whats happening. I know that this method strips
  the retweets, but I don't retweet that much to, from 3200 status, have
  only 470 real updates by me.

  If anyone can give a light on how to fetch all possible tweets from a
  user, I you really appreciate. I have done lots of searching, but
  found nothing to help me solving this.

  Thanks in advance,
  Alexandre Cisneiros Filho.

  --
  Twitter developer documentation and resources:http://dev.twitter.com/doc
  API updates via Twitter:http://twitter.com/twitterapi
  Issues/Enhancements Tracker:
 http://code.google.com/p/twitter-api/issues/list
  Change your membership to this group:
 http://groups.google.com/group/twitter-development-talk

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] yet another twitterpocalypse - direct message id exceeded 32bit signed integer

2011-01-05 Thread Yusuke Yamamoto
Hi all,

Not sure if it's a well known issue, but I just want to let you know that the 
id of direct message passed 2147483647 - which is the largest number of 32bit 
signed integer.
Applications use direct message may need to deal with this.

Thanks,
-- 
Yusuke Yamamoto
yus...@mac.com

this email is: [x] bloggable/tweetable [ ] private
follow me on : http://twitter.com/yusukeyamamoto
subscribe me at : http://samuraism.jp/

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk


[twitter-dev] Twitter4J 2.1.10 released - fixes message id overflow issue

2011-01-05 Thread Yusuke Yamamoto
Hi all,

Twitter4J is an unofficial, open-sourced, mavenized and Google App 
Engine/Android ready Java library for the Twitter API released under the BSD 
license.

I'm pleased to announce the immediate availability of Twitter4J version 2.1.10
Developers using Twitter4J are encouraged to migrate to this latest version due 
to the direct message id overflow issue.
Note that you need to rebuild your application to migrate to this version.

- Download:
http://twitter4j.org/en/index.html#download

- Release Notes:
http://tinyurl.com/T4J2110

This release will be available at the Maven central repository in an hour.
http://repo1.maven.org/maven2/org/twitter4j/twitter4j-core/

Please refer the Support API matrix for supported methods.
http://twitter4j.org/en/api-support.html

Please note that Twitter4J is not sponsored or affiliated by Twitter.com.
For Twtter4J specific issues/questions, please use the Twitter4J mailing list 
(NOT twitter-development-talk).
http://twitter4j.org/en/index.html#mailingList
-- 
Yusuke Yamamoto
yus...@mac.com

this email is: [x] bloggable/tweetable [ ] private
follow me on : http://twitter.com/yusukeyamamoto
subscribe me at : http://samuraism.jp/

-- 
Twitter developer documentation and resources: http://dev.twitter.com/doc
API updates via Twitter: http://twitter.com/twitterapi
Issues/Enhancements Tracker: http://code.google.com/p/twitter-api/issues/list
Change your membership to this group: 
http://groups.google.com/group/twitter-development-talk