Re: [twitter-dev] Re: 401 to site streams since yesterday

2011-07-29 Thread Fabien Penso
On Wed, Jul 27, 2011 at 8:35 AM, Tim Haines tmhai...@gmail.com wrote:
 I've seen 2 things recently that can cause it.  1) Your user you connect
 with becomes deauthed from the app, or 2) I upgraded my version of roauth
 gems in ruby today, and it broke the way I was handling params and I was
 getting 401s.

Tim,

Good catch, it was the oauth token, for some reason it was not working
anymore, I took another one and it did the trick. I don't understand
why using the app oauth access token it didn't work neither, I would
have expected it to work fine...

Thanks for your idea.

 I expect your reason is probably something different though.  Have you tried
 a verify credentials call with your user you connect with?
 Cheers,
 Tim.

 On Fri, Jul 22, 2011 at 1:17 AM, Fabien Penso fabienpe...@gmail.com wrote:

 Am I the only one having this issue?

 On Thu, Jul 21, 2011 at 9:19 AM, Fabien Penso fabienpe...@gmail.com
 wrote:
  Hi,
 
  Any idea why the site streams give me 401 for the last 16 hours ? I
  haven't changed anything and I don't understand why it would change?
  This is for @appnotification
 
  Thanks.
 

 --
 Have you visited the Developer Discussions feature on
 https://dev.twitter.com/discussions yet?

 Twitter developer links:
 Documentation and resources: https://dev.twitter.com/docs
 API updates via Twitter: https://twitter.com/twitterapi

 Unsubscribe or change your group membership settings:
 http://groups.google.com/group/twitter-development-talk/subscribe

 --
 Have you visited the Developer Discussions feature on
 https://dev.twitter.com/discussions yet?

 Twitter developer links:
 Documentation and resources: https://dev.twitter.com/docs
 API updates via Twitter: https://twitter.com/twitterapi

 Unsubscribe or change your group membership settings:
 http://groups.google.com/group/twitter-development-talk/subscribe


-- 
Have you visited the Developer Discussions feature on 
https://dev.twitter.com/discussions yet?

Twitter developer links:
Documentation and resources: https://dev.twitter.com/docs
API updates via Twitter: https://twitter.com/twitterapi

Unsubscribe or change your group membership settings: 
http://groups.google.com/group/twitter-development-talk/subscribe


[twitter-dev] Re: I'm using xAuth, I need to read Direct Messages, what are my options?

2011-07-29 Thread Rich
Yes but xAuth tokens don't have permission to access direct messages

On Jul 25, 2:11 pm, John Meyer john.l.me...@gmail.com wrote:
 Forgive me if I'm wrong, but don't you get the oAuth tokens when you log
 in with xAuth?

 On 7/15/2011 10:00 AM, Garry wrote:







  e xAuth to access Twitter, my platform of choice (IBM AS/
  400) has no GUI, and no web browser, so OAuth is out.

-- 
Have you visited the Developer Discussions feature on 
https://dev.twitter.com/discussions yet?

Twitter developer links:
Documentation and resources: https://dev.twitter.com/docs
API updates via Twitter: https://twitter.com/twitterapi

Unsubscribe or change your group membership settings: 
http://groups.google.com/group/twitter-development-talk/subscribe


[twitter-dev] new version 0.2.0 of twitter-api for clojure released

2011-07-29 Thread AdamWynne
Hi guys

A new version 0.2.0 has been released with full async integration, reworked 
callbacks and some more tests. Uses some nifty protocol based performance 
tweaks.

Its over at: https://github.com/adamwynne/twitter-api

Cheers
Adam

-- 
Have you visited the Developer Discussions feature on 
https://dev.twitter.com/discussions yet?

Twitter developer links:
Documentation and resources: https://dev.twitter.com/docs
API updates via Twitter: https://twitter.com/twitterapi

Unsubscribe or change your group membership settings: 
http://groups.google.com/group/twitter-development-talk/subscribe


[twitter-dev] Same 'since' and 'until' date not working

2011-07-29 Thread Laksh Gupta
Hi
 
I want to query tweets for a particular day. Say if I use 2011-07-28 as 
both starting date and ending date

http://search.twitter.com/search?q=samsung+since%3A2011-07-28+until%3A2011-07-28

 
then I can see 1 tweet on my browser but not in the xml which I receive 
through my program. Instead I get the following Http responce for the query 
'samsung'-
 
?xml version=\1.0\ encoding=\UTF-8\?feed xmlns:google=\
http://base.google.com/ns/1.0\; xml:lang=\en-US\ xmlns:openSearch=\
http://a9.com/-/spec/opensearch/1.1/\; xmlns=\http://www.w3.org/2005/Atom\; 
xmlns:twitter=\
http://api.twitter.com/\;idtag:search.twitter.com,2005:search/samsungsince:2011-07-28
 until:2011-07-28/idlink type=\text/html\ href=\
http://search.twitter.com/search?q=samsung+since%3A2011-07-28+until%3A2011-07-28\;
 
rel=\alternate\/link type=\application/atom+xml\ href=\
http://search.twitter.com/search.atom?q=samsung+since%3A2011-07-28+until%3A2011-07-28\;
 
rel=\self\/titlesamsung since:2011-07-28 until:2011-07-28 - Twitter 
Search/titlelink type=\application/opensearchdescription+xml\ href=\
http://search.twitter.com/opensearch.xml\; rel=\search\/link 
type=\application/atom+xml\ href=\
http://search.twitter.com/search.atom?since_id=96884006775296000amp;q=samsung%20since%3A2011-07-28%20until%3A2011-07-28\;
 
rel=\refresh\/updated2011-07-29T10:05:31Z/updated/feed
 
I should have received the tweet, isn't it? The program runs fine if I use 
different start date and end date. Is there anything I am missing here? I 
hope I am not making any mistake in the query format. Please help me in 
solving this problem.
 
Thanks in advance.
 
 

-- 
Have you visited the Developer Discussions feature on 
https://dev.twitter.com/discussions yet?

Twitter developer links:
Documentation and resources: https://dev.twitter.com/docs
API updates via Twitter: https://twitter.com/twitterapi

Unsubscribe or change your group membership settings: 
http://groups.google.com/group/twitter-development-talk/subscribe


[twitter-dev] hard-coded oauth access token

2011-07-29 Thread Jonas
Is it possible to authenticate from a web page without any server-side
program?  I would like to use javascript (and jsonp with query-string
oauth, I am guessing) and hard code my access_token in a javascript
variable.

I know this would be a major security no-no.  I have no intention of
putting the webpage on the internet.

I simply would like to know if my intention is even possible.  It
would be greatly appreciated if someone could put aside the security
issue for a moment and answer my question.  Thanks!

-- 
Have you visited the Developer Discussions feature on 
https://dev.twitter.com/discussions yet?

Twitter developer links:
Documentation and resources: https://dev.twitter.com/docs
API updates via Twitter: https://twitter.com/twitterapi

Unsubscribe or change your group membership settings: 
http://groups.google.com/group/twitter-development-talk/subscribe