Re: [twitter-dev] API based Query

2011-07-19 Thread George varghese
For tweet posting  use API http://api.twitter.com/1/statuses/update.format


You can refer https://dev.twitter.com/docs/api/1/post/statuses/update


Regards,
George





On Tue, Jul 19, 2011 at 12:26 PM, sangeetha  wrote:

> Hi,
>
>I want to know how to implement the twitter post/tweets display API
>
> --
> 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: Authentication dilemma

2011-07-17 Thread george
Thanks for the replies!

This is what I was looking for, in case someone else stumbles upon
this thread:

https://dev.twitter.com/docs/auth/oauth/single-user-with-examples


George

-- 
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] Authentication dilemma

2011-07-03 Thread george
We have a website for internal use within our company. When a certain
action occurs on the site, such as a survey being completed, we would
like to have the app (our website) post a status update on our
company's Twitter account. This process is supposed to be invisible to
the user and cannot involve several steps (several requests being made
by the browser).

What is the proper authentication method for this? It used to be very
easy with Basic Auth, but now I am confused. OAuth seems to be
designed for Twitter user agents, which is not our case. The visitor
of our website does not interact with Twitter in any way.

Thanks,
George

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


[twitter-dev] authenticate and authorize urls dont work on some BB devices

2011-05-26 Thread George Briks
Hello,
   In light of recent announcements, we have been trying to update our
authorization flow to use OAuth...

 We have run into some issues with the Authenticate and Authorize
pages not functioning on some BlackBerry devices.. These are not even
devices that are that old.. It seems that OS 5.0 devices are unable
login using the authenticate and authorize urls. The javascript on the
page prevents the fields from being completed by the user, while I am
sure this due to some broken implementation on the device, it makes it
impossible to do run an OAuth flow.

Is there some argument or other way to get a very simple basic HTML
form that would work on devices with broken javascript?

Can twitter at least have someone take a look at their OAuth pages
with a 5.0 BlackBerry. I have not tested all BlackBerry OS's, but I
know 6.0 devices work, 5.0 devices do not work at all, and 4.2 devices
(many in 3rd world still use these) have very very ugly but somewhat
functioning interface.

Thanks for any insight or workarounds that might be provided.

--George

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


[twitter-dev] Re: Conversation stream

2011-04-01 Thread George
Yep, this is HTML end-point, I was also surprised ).

Solution with tons of requests for sake of one conversation is
inadmissible.
I also know about another solution which I've researched in Search
API.
We can call search with specific parameters which will also return us
conversation by one call.
http://search.twitter.com/search.json?result_type=recent&q={screen_name1}%20{screen_name2}&rpp=50

It works however result can be unexpected time to time.
Unfortunately Twitter can't follow replied theme, so conversation may
looks as random tweets of two users for some period of time.
Does anybody knows better solution? I suppose that there should be
performed some filtering and ordering within application.

Regards,
George

On Apr 1, 7:09 pm, Stu  wrote:
> Ah I see. I was appending .json to the status in an attempt to get
> that. I didn't expect HTML!
>
> I guess this probably won't stay around for long as it doesn't look
> like a method made specifically as an API method.
>
> The current solution is to follow the in_reply_to fields that the API
> sends back, stepping through the conversation as you go.. but unless
> you have the full streaming API this requires lots of calls to the
> REST api, and you'll get rate limited fairly soon. :-(
>
> S.
>
> On Apr 1, 10:39 am, George  wrote:
>
>
>
>
>
>
>
> > Hi Stu,
>
> > I'm also interested in the mentioned question).
> > Link that I've shared should work for you, just take a note that it
> > will work only for replied statuses.
> > I know the ID of my status (tweet) which was reply to another one, so
> > if we'll pass this ID to the 
> > call:http://search.twitter.com/search/thread/53014618771165184
>
> > Twitter will show you a conversation page, however sometimes it works
> > strange.
> > Does anybody know right way how to obtain conversation thread from the
> > Twitter?
>
> > Regards,
> > George
>
> > On Apr 1, 11:33 am, Stu  wrote:
>
> > > I'd be really interested to know if this function becomes reliable and
> > > incorporated into the API.  I can't actually get it to work at the
> > > moment though, I get Twitter's 'The page you were looking for doesn't
> > > exist' sent back...
>
> > > S.
>
> > > On Mar 31, 1:51 pm, George  wrote:
>
> > > > Hi Folks,
>
> > > > My team is working on new Twitter client and we're interested in some
> > > > specific options in Twitter API.
> > > > Of course I know that some features already requested and this one was
> > > > asked however I think we should rise up it again.
> > > > I've found hidden call on Twitter which allows us to receive
> > > > conversation tread between the 
> > > > users.http://search.twitter.com/search/thread/
>
> > > > The above call return correct data for some statuses but for another
> > > > ones it may return nothing or even return wrong data,
> > > > Does anybody know something about this call? Maybe we need to supply
> > > > additional parameters?
> > > > Is it possible to obtain conversation thread between two users somehow
> > > > not using of above call.
>
> > > > Thanks in advance,
> > > > George

-- 
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: Conversation stream

2011-04-01 Thread George
Hi Stu,

I'm also interested in the mentioned question).
Link that I've shared should work for you, just take a note that it
will work only for replied statuses.
I know the ID of my status (tweet) which was reply to another one, so
if we'll pass this ID to the call:
http://search.twitter.com/search/thread/53014618771165184

Twitter will show you a conversation page, however sometimes it works
strange.
Does anybody know right way how to obtain conversation thread from the
Twitter?

Regards,
George

On Apr 1, 11:33 am, Stu  wrote:
> I'd be really interested to know if this function becomes reliable and
> incorporated into the API.  I can't actually get it to work at the
> moment though, I get Twitter's 'The page you were looking for doesn't
> exist' sent back...
>
> S.
>
> On Mar 31, 1:51 pm, George  wrote:
>
>
>
>
>
>
>
> > Hi Folks,
>
> > My team is working on new Twitter client and we're interested in some
> > specific options in Twitter API.
> > Of course I know that some features already requested and this one was
> > asked however I think we should rise up it again.
> > I've found hidden call on Twitter which allows us to receive
> > conversation tread between the 
> > users.http://search.twitter.com/search/thread/
>
> > The above call return correct data for some statuses but for another
> > ones it may return nothing or even return wrong data,
> > Does anybody know something about this call? Maybe we need to supply
> > additional parameters?
> > Is it possible to obtain conversation thread between two users somehow
> > not using of above call.
>
> > Thanks in advance,
> > George

-- 
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] Conversation stream

2011-03-31 Thread George
Hi Folks,

My team is working on new Twitter client and we're interested in some
specific options in Twitter API.
Of course I know that some features already requested and this one was
asked however I think we should rise up it again.
I've found hidden call on Twitter which allows us to receive
conversation tread between the users.
http://search.twitter.com/search/thread/

The above call return correct data for some statuses but for another
ones it may return nothing or even return wrong data,
Does anybody know something about this call? Maybe we need to supply
additional parameters?
Is it possible to obtain conversation thread between two users somehow
not using of above call.

Thanks in advance,
George

-- 
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] how to generate formatted json response?

2011-01-07 Thread George Cao
Hi,all
i am wondering what lib that twitter uses to generate the formatted json
response data if there has one. And what you guys using at work?

Best regards.

George Cao

-- 
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: Twitter in Portuguese

2010-09-17 Thread George Lima
I'm waiting attentively, thanks!

On Sep 16, 1:44 am, George Lima  wrote:
> why there is a setting in Portuguese language?
> why is twitter question: What language would you like to Twitter in?
> I would like to see in Portuguese,  more not have this option

-- 
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?hl=en


[twitter-dev] Twitter in Portuguese

2010-09-16 Thread George Lima
why there is a setting in Portuguese language?
why is twitter question: What language would you like to Twitter in?
I would like to see in Portuguese,  more not have this option

-- 
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?hl=en


Re: [twitter-dev] Re: Invalid / used nonce

2010-07-30 Thread Malayil George
Hi,
   I've used CFUUID's (
http://developer.apple.com/mac/library/documentation/CoreFoundation/Reference/CFUUIDRef/Reference/reference.html).
Apple's documentation states they use a combination of ethernet address and
time to generate a unique id.


George


On Fri, Jul 30, 2010 at 8:53 PM, Tom  wrote:

> Hi Mounir,
>
> I'm using this code myself, maybe you can transform it to the language
> you use.
>
> http://www.devonferns.com/cocoablog/?p=45
>
> Tom
>
> On Jul 30, 11:32 am, Mounir Regragui  wrote:
> > Hello Taylor!
> >
> > I don't think the error has something to do with the access token,
> > because sometimes the error is thrown during my request to retrieve a
> > Request Token.
> > I'm afraid the error has something to do with encodings or something
> > similar.
> >
> > Also, I would like to know if there is an "advised" way to generate
> > the nonce value.
> > I was using the formula of the OAuth library : it concatenates the
> > timestamp and a random integer value, and then it applies a MD5 hash
> > on it. Maybe you or someone else know another way that works to
> > generate this value.
> >
> > Regards.
> >
> > Mounir Regragui
> >
> > On 29 juil, 18:15, Taylor Singletary 
> > wrote:
> >
> > > Hi Mounir,
> >
> > > In this case I'm fairly confident then that it's the Twitter API
> > > implementation of OAuth that's at fault here and these invalid nonce
> errors
> > > are spurious for you. While I hate to suggest working around bugs like
> this,
> > > it might be your best strategy -- if you encounter an invalid nonce
> error,
> > > pause for a few moments, regenerate the request with a different nonce
> and
> > > timestamp, and try again.
> >
> > > If you find a case where it's repeatably throwing you this error, for
> > > example -- you notice that it only happens for a certain access token,
> or it
> > > only happens when you're using certain characters in the POST body or
> nonce
> > > -- then please bring it to our attention.
> >
> > > Scalability projects, among other things, have prevented our
> engineering
> > > team from rolling out a reimplementation of our OAuth back end that
> will fix
> > > aggravating issues like these, among other things.
> >
> > > Taylor
> >
> > > On Thu, Jul 29, 2010 at 12:43 AM, Mounir Regragui <
> reg.mou...@gmail.com>wrote:
> >
> > > > Hello everybody,
> >
> > > > Yesterday I was exposing an issue I encoutered.
> > > > My code was working perfectly, and then I started having a 401 error
> > > > code with this error message : "Invalid / used nonce"
> > > > when I make API calls.
> >
> > > > I thought it was solved because yesterday I did some API calls that
> > > > made it through. However this issue is still here today.
> >
> > > > Actually, when I make API calls (POST, GET or OAuth requests),
> > > > sometimes everything works fine, sometimes i have the "Invalid / used
> > > > nonce" error.
> >
> > > > As I told Taylor yesterday, I am sure that that the system time is
> > > > correct (because when I change it, nothing works), and because as I
> > > > said, when i try to send a request with the exact same code running,
> > > > sometimes it fails, sometimes it does not.
> >
> > > > Here are dumps of the communications
> >
> > > > I tried to send a tweet, had an error :http://pastebin.com/ur2JYtnM
> >
> > > > A few seconds later, i run the exact same code and it is valid :
> > > >http://pastebin.com/6knpLHBW
> >
> > > > (I will reset my key and secret ^^)
> >
> > > > I really do not know where the issue comes from, because the code was
> > > > running flawlessly last week!
> >
> > > > Any kind of help appreciated.
> >
> > > > Regards.
> >
> > > > Mounir Regragui
>


[twitter-dev] Re: Hashtag Entity locations seems to be off in certain cases

2010-07-25 Thread Malayil George
The location of the url seems to be overlapping with that of the second
hashtag as well :(
Does the twitter site use a different mechanism to display entities? The
tweet seems to display fine on twitter.com

Thanks
George


On Thu, Jul 22, 2010 at 9:31 PM, Malayil George  wrote:

> Hi,
>Pasted below is a sample status element I received while querying
> home_timeline. While the entites are being detected, the hashtag locations
> are incorrect. It seems to be detecting Quora as the first hashtag (ignoring
> 194), but the location it returns seems to be of 194. And this seems to go
> on for the next hashtag.
>
>
> Thanks
> George
>
>
>
> 
>   Sun Jul 18 18:32:04 + 2010
>   18856892413
> *  DailyLinks #194 Interesting Q&A from the Startups topic on
> #Quorahttp://bit.ly/aAsLfP 1st time CEO, Ron Conway, IPO, YCombinator
> #Startups
> *  <a href="http://www.brizzly.com";
> rel="nofollow">Brizzly</a>
>   false
>   
>   
>   false
>   
>   
> 36704982
>  Prakash S
> pswam
> Dubai, UAE
> Generally Useful Person :-)
> 
> http://a3.twimg.com/profile_images/194231823/Prak1_normal.png
> 
> http://www.cloudknow.com
> false
> 179
> 8B542B
> 33
> 9D582E
> EADEAA
> D9B17E
> 292
> Thu Apr 30 16:32:02 + 2009
> 104
> 14400
> Abu Dhabi
> 
> http://s.twimg.com/a/1279649509/images/themes/theme1/bg.png
> 
> false
> false
> false
> false
> false
> true
> 977
> en
> false
> false
>   
>   
>   
>   
>   
>   
> 
> 
>   
> http://bit.ly/aAsLfP
> 
>   
> 
> *
>   
> Quora
>   
>   
> Startups
>   
> 
>   
> 


[twitter-dev] Still having issues, though less.

2010-07-23 Thread George McBay
The Twitter app I run is still having issues with URL requests right
now though far less than it did previously.  Previously like 90% of
all calls were failing, now it seems like about 50/50 success/fail...
better, but still unreliable.


[twitter-dev] Hashtag Entity locations seems to be off in certain cases

2010-07-22 Thread Malayil George
Hi,
   Pasted below is a sample status element I received while querying
home_timeline. While the entites are being detected, the hashtag locations
are incorrect. It seems to be detecting Quora as the first hashtag (ignoring
194), but the location it returns seems to be of 194. And this seems to go
on for the next hashtag.


Thanks
George




  Sun Jul 18 18:32:04 + 2010
  18856892413
*  DailyLinks #194 Interesting Q&A from the Startups topic on
#Quorahttp://bit.ly/aAsLfP 1st time CEO, Ron Conway, IPO, YCombinator
#Startups
*  <a href="http://www.brizzly.com";
rel="nofollow">Brizzly</a>
  false
  
  
  false
  
  
36704982
 Prakash S
pswam
Dubai, UAE
Generally Useful Person :-)

http://a3.twimg.com/profile_images/194231823/Prak1_normal.png

http://www.cloudknow.com
false
179
8B542B
33
9D582E
EADEAA
D9B17E
292
Thu Apr 30 16:32:02 + 2009
104
14400
Abu Dhabi

http://s.twimg.com/a/1279649509/images/themes/theme1/bg.png

false
false
false
false
false
true
977
en
false
false
  
  
  
  
  
  


  
http://bit.ly/aAsLfP

  

*
  
Quora
  
  
Startups
  

  



Re: [twitter-dev] oAuth and callback function

2010-06-30 Thread Malayil George
I've only done PIN based authentication, but, my understanding of the
protocol was that you supply the callback url in your oauth request token
call? Are you seeing that you are getting the old callback after updating
the code in the request token step?


George


On Wed, Jun 30, 2010 at 9:23 PM, EastSideDev  wrote:

> I changed the url for my callback function, and updated that
> information in my application settings on the twitter API site. The
> problem I am running into, is that I am still getting the old callback
> URL. Is there a lag time, before changes take effect?


Re: [twitter-dev] OAuth Base String generation

2010-06-11 Thread Malayil George
Thanks for the clarification Taylor


George


On Fri, Jun 11, 2010 at 10:14 AM, Taylor Singletary <
taylorsinglet...@twitter.com> wrote:

> It kind of depends on how you tilt your head and look at it sometimes.
>
> One way of looking at it is that POST body elements already are URL-encoded
> (at least when we're talking about "application/x-www-form-urlencoded" type
> bodies). When you send a POST request, you already must URL encode the body.
>
> This algorithm begins from the assumption that you've already prepared your
> POST body. I'll try to make that distinction clearer.
>
> Taylor
>
> On Thu, Jun 10, 2010 at 7:31 PM, Malayil George wrote:
>
>> Hi,
>>I've been trying to work through the OAuth steps presented at
>> http://dev.twitter.com/pages/auth#signing-requests . The psuedo-code for
>> base-string generation is given as
>>
>> httpMethod + "&" +
>>  url_encode(  base_uri ) + "&" +
>>  sorted_query_params.each  { | k, v |
>>  url_encode ( k ) + "%3D" +
>>  url_encode ( v )
>>  }.join("%26")
>>
>>  But, this doesn't seem to work with the params on the example. The
>> example has baseString = POST&https%3A%2F%2Fapi.twitter.com
>> %2Foauth%2Frequest_token&oauth_callback%3Dhttp%253A%252F%252Flocalhost%253A3005%252Fthe_dance%252Fprocess_callback%253Fservice_provider_id%253D11%26oauth_consumer_key%3DGDdmIQH6jhtmLUypg82g%26oauth_nonce%3DQP70eNmVz8jvdPevU3oJD2AfF7R7odC2XJcn4XlZJqk%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1272323042%26oauth_version%3D1.0
>>
>> With the above algorithm, wouldn't the baseString end up as
>> "...&oauth_callback%3Dhttp%3A%2F%2Flocalhost...%26oauth_consumer_key%3D..."?
>> The %3A seems to be getting encoded somehow to %253A in the example. I have
>> been able to get my result to match the example result by modifying the
>> algorithm to be
>>
>> httpMethod + "&" +
>>  url_encode(  base_uri ) + "&" +
>>  url_encode(sorted_query_params.each  { | k, v |
>>  url_encode ( k ) + "=" +
>>  url_encode ( v )
>>  }.join("&"))
>>
>>   Reading the comments at
>> http://hueniverse.com/2008/10/beginners-guide-to-oauth-part-iv-signing-requests/,
>>  it seems we should be doing a double url-encode? Is that right or am I
>> missing something (and this workaround is just working in this example)?
>>
>>
>> Regards
>> George
>>
>>
>>
>>
>>
>>
>


[twitter-dev] OAuth Base String generation

2010-06-11 Thread Malayil George
Hi,
   I've been trying to work through the OAuth steps presented at
http://dev.twitter.com/pages/auth#signing-requests . The psuedo-code for
base-string generation is given as

httpMethod + "&" +
 url_encode(  base_uri ) + "&" +
 sorted_query_params.each  { | k, v |
 url_encode ( k ) + "%3D" +
 url_encode ( v )
 }.join("%26")

 But, this doesn't seem to work with the params on the example. The example
has baseString = POST&https%3A%2F%2Fapi.twitter.com
%2Foauth%2Frequest_token&oauth_callback%3Dhttp%253A%252F%252Flocalhost%253A3005%252Fthe_dance%252Fprocess_callback%253Fservice_provider_id%253D11%26oauth_consumer_key%3DGDdmIQH6jhtmLUypg82g%26oauth_nonce%3DQP70eNmVz8jvdPevU3oJD2AfF7R7odC2XJcn4XlZJqk%26oauth_signature_method%3DHMAC-SHA1%26oauth_timestamp%3D1272323042%26oauth_version%3D1.0

With the above algorithm, wouldn't the baseString end up as
"...&oauth_callback%3Dhttp%3A%2F%2Flocalhost...%26oauth_consumer_key%3D..."?
The %3A seems to be getting encoded somehow to %253A in the example. I have
been able to get my result to match the example result by modifying the
algorithm to be

httpMethod + "&" +
 url_encode(  base_uri ) + "&" +
 url_encode(sorted_query_params.each  { | k, v |
 url_encode ( k ) + "=" +
 url_encode ( v )
 }.join("&"))

  Reading the comments at
http://hueniverse.com/2008/10/beginners-guide-to-oauth-part-iv-signing-requests/,
it seems we should be doing a double url-encode? Is that right or am I
missing something (and this workaround is just working in this example)?


Regards
George


[twitter-dev] Does xAuth accept email addresses?

2010-04-13 Thread George McBay
I'm converting a twitter client from basic auth to xauth and
everything is working fine except I have been unable to generate an
oAuth token using xauth if the user attempts to sign in with an email
address instead of their Twitter username.

Is a Twitter user's email address a valid value for an xAuth
x_auth_username parameter?  And if so, is there anything about the
encoding that's odd?  I've tried the various obvious forms of HTTP
value escaping but with no luck so far.

It would be really nice to see something like the access_token page's
Example Signature Base String that uses an email address (if that is
even supported?) successfully.

Thanks in advance.




[twitter-dev] Search: detecting deleted tweets using since_id

2009-11-18 Thread George V. Reilly
I have a service that polls the Search API every few minutes. I'm
passing since_id to pick up only new tweets since the last time that I
polled.

Let's say at time t1 I pick up a tweet X. At time t2, I'll poll with
since_id>=ID(X). If X has been deleted in the meantime, I can see no
way to detect that using since_id.

Basically, I'm getting complaints that deleted tweets continue to show
up in our app. Is there a way for me to detect this?

Also, can I safely assume that status IDs monotonically increase?

Thanks
/George V. Reilly, Seattle


[twitter-dev] Re: from:user and since_id breaking Search API

2009-10-28 Thread George V. Reilly

I'm *not* using since_id, but I'm sporadically getting warning
messages about it. Most of the time, my queries work.

d:\>curl "http://search.twitter.com/search.json?q=
%23jquery&lang=en&page=1&show_user=true&rpp=15"

{
  "results": [{
"profile_image_url": "http://a1.twimg.com/profile_images/353780044/
avatar_normal.png",
"created_at": "Thu, 29 Oct 2009 00:05:02 +",
"from_user": "2twittdotcom",
"to_user_id": null,
"text": "create a simple infinite carousel with  #jquery
http://2twitt.com/3u7";,
"id": 5244850622,
"from_user_id": 33556519,
"geo": null,
"iso_language_code": "en",
"source": "API"
  }],
  "max_id": 5244850622,
  "since_id
": 5056020580,
  "refresh_url": "?since_id=5244850622&q=%23jquery",
  "results_per_page": 15,
  "page": 1,
  "completed_in": 0.02854,
  "warning": "adjusted since_id to 5056020580 (2009-10-22 00:00:00
UTC), requested since_id was older than allowed",
  "query": "%23jquery"
}

It's very annoying. Any ideas?


[twitter-dev] Re: follow and reply using auth tokens

2009-09-09 Thread binu george
hi  i am working in php . with username and apssed i did the follow . but
through auth token . i am unable to do . kindly help

thanks
Binu george
On Tue, Sep 8, 2009 at 1:57 PM, dizid  wrote:

>
> Hi binu,
>
> Well, the first thing anyone who might be able to help you needs to
> know: in which language are you prgramming?
>
> On Sep 8, 4:49 am, binu  wrote:
> > hi
> >
> > Can any one help me to do  follow and reply in twitter API using auth
> > tokens
> >
> > thanks
>


[twitter-dev] Re: Platform downtime is expected

2009-08-17 Thread Jonathan George

Please post an update to status.twitter.com, so our users can be as
patient as we are.

best,
jonathan

On Sun, Aug 16, 2009 at 12:52 PM, Chad Etzel wrote:
>
> Hi all,
>
> The API team is actively debugging the OAuth issues as we speak.
> Please be patient as we nail down the problems.
>
> Thanks,
> -Chad
>
> On Sun, Aug 16, 2009 at 1:43 PM, Andrew Badera wrote:
>>
>> On Sun, Aug 16, 2009 at 1:40 PM, bosher wrote:
>>>
>>> How is it that all the oAuth apps out there are down, but others like
>>> TweetMeMe are not? TweetMeMe works just fine, how is that possible?
>>>
>>
>> HTTP Basic Auth still works I believe, as do any pre-problem OAuth
>> tokens issued.
>>
>> ∞ Andy Badera
>> ∞ This email is: [ ] bloggable [x] ask first [ ] private
>> ∞ Google me: http://www.google.com/search?q=(andrew+badera)+OR+(andy+badera)
>>
>


[twitter-dev] Re: Platform downtime is expected

2009-08-16 Thread Jonathan George

1. It's been roughly 10 hours.  How about an update?

2. It'd be great if you would post this to status.twitter.com, in
addition to the developer mailing list.  Status is seen by more users,
and the last update you have on it is rather ambiguous.  When users
see that the Twitter web interface is up and running, they expect the
apps to be up and running as well.

best,
jonathan

On Aug 15, 1:08 pm, Doug Williams  wrote:
> Hi all --If you have been monitoring our status blog [1] or been to
> Twitter.com today you have noticed that we are once again experiencing
> problems due to external causes. The issues causing the downtime require
> that we once again take measures to bring the site back online.
>
> The first step our operations team must take will likely cause API downtime,
> especially affecting OAuth. We apologize for the inconvenience and we will
> work quickly to reduce the impact to the API. We appreciate your patience
> and I will update you as soon as we know more.
>
> Thanks,
> Doug


[twitter-dev] Re: "You have been rate limited. Enhance your calm."

2009-08-07 Thread Jonathan George

John's Twitter gem does not follow redirects as far as can I tell.
I've forked and made the necessary changes here:

http://github.com/jdg/twitter/commits/master/

Feel free to re-fork/pull/whatever.  I added an 'init.rb' so that it
can also be used as a plugin, rather than a gem.


best,
jonathan
(boxcar creator)

On Aug 7, 3:34 pm, David Fisher  wrote:
> Yea I'm using John's. Have to pull out the packet sniffer soon
>
> On Aug 7, 3:32 pm, Larry Wright  wrote:
>
>
>
> > You can use Wireshark or any other packet sniffer to determine whether your
> > client is following redirects. I'm not sure what ruby twitter client you're
> > using, but if it's John Nunemaker's, I believe it does follow redirects.
> > Larry Wright/@larrywright
>
> > On Fri, Aug 7, 2009 at 2:03 PM, David Fisher  wrote:
>
> > > I can't be sure if my client is following redirects. Probably not. I'm
> > > just using the Ruby Twitter Gem which haven't been updated for a month
> > > or so I think
>
> > > dave
>
> > > On Aug 7, 1:15 pm, lucasnicolato  wrote:
> > > > im having the same problem. im just lucky my app is still in test.
>
> > > > RT @twitter Due to defense measures some Twitter clients are unable to
> > > > communicate with our API, and many users are unable to tweet via SMS.
>
> > > > I think we can only wait for twitter to normalize de api.
>
> > > > On 7 ago, 12:20, diddy  wrote:
>
> > > > > Hi,
>
> > > > > I use the Twitter search api, e.g: -
>
> > > > >http://search.twitter.com/search.rss?q=iphone
>
> > > > > and I now get: -
>
> > > > > "You have been rate limited. Enhance your calm."
>
> > > > > I rely on this for my application.  Anything I can do to stop it?
>
> > > > > Thanks!
>
> > --
> > Larry Wright


[twitter-dev]

2009-08-03 Thread George Thiruvathukal