[twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-20 Thread LINUXGEEK
thank you Harris... On Aug 20, 11:40 am, Matt Harris wrote: > Glad to hear you got it worked out. > > Matt > > > > On Thu, Aug 19, 2010 at 10:55 PM, LINUXGEEK wrote: > > I have done with it... > > > now am able to post my status through my application... > > > On Aug 19, 9:37 am, LINUXGEEK wrot

Re: [twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-19 Thread Matt Harris
Glad to hear you got it worked out. Matt On Thu, Aug 19, 2010 at 10:55 PM, LINUXGEEK wrote: > I have done with it... > > now am able to post my status through my application... > > On Aug 19, 9:37 am, LINUXGEEK wrote: > > i have changed and tried but still the same issue.. > > > > please help

[twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-19 Thread LINUXGEEK
I have done with it... now am able to post my status through my application... On Aug 19, 9:37 am, LINUXGEEK wrote: > i have changed and tried but still the same issue.. > > please help me. > > thanks regards yakub pasha > > On Aug 18, 8:31 pm, Matt Harris wrote: > > > Hey, > > > Looking back a

[twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread LINUXGEEK
i have changed and tried but still the same issue.. please help me. thanks regards yakub pasha On Aug 18, 8:31 pm, Matt Harris wrote: > Hey, > > Looking back at your original email I notice your base string has the > URLhttps://api.twitter.com... but your request is tohttp://api.twitter.com...

[twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread LINUXGEEK
thanks for your replay Hrris.. i'll try it now and get back to you.. can you tell about the postbody i have mensioned the post body in the previous messages .. am i doing correct in that.. On Aug 18, 8:31 pm, Matt Harris wrote: > Hey, > > Looking back at your original email I notice your base s

[twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread LINUXGEEK
here is my my postbody String postBody="status="+urlEncode("Test message"); String length=String.valueOf(postBody.length()); httpConn.setRequestProperty("Content-Length", length); is this correct usage in htt

[twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread LINUXGEEK
thank you very much Ernandes. On Aug 18, 6:40 pm, "Ernandes Jr." wrote: > OK! > > I am working on this issue. Hope to get a fix for that very soon. > > Regards, > Ernandes > > On Wed, Aug 18, 2010 at 8:48 AM, LINUXGEEK wrote: > > yep.. > > am running it in blackberry > > > On Aug 18, 4:3

Re: [twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread Matt Harris
Hey, Looking back at your original email I notice your base string has the URL https://api.twitter.com... but your request is to http://api.twitter.com The base string and request URLs must be the same otherwise your request is invalid. Hope that helps, Matt Harris Developer Advocate, Twi

Re: [twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread Ernandes Jr.
OK! I am working on this issue. Hope to get a fix for that very soon. Regards, Ernandes On Wed, Aug 18, 2010 at 8:48 AM, LINUXGEEK wrote: > yep.. > am running it in blackberry > > On Aug 18, 4:33 pm, "Ernandes Jr." wrote: > > Are you running it on a Blackberry? :) > > > > On Wed, Aug 18, 2010

[twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread LINUXGEEK
yep.. am running it in blackberry On Aug 18, 4:33 pm, "Ernandes Jr." wrote: > Are you running it on a Blackberry? :) > > On Wed, Aug 18, 2010 at 8:29 AM, LINUXGEEK wrote: > > hello Ernandes up to now is studied your code but  i am getting > > structed while using the send() in your twitter api m

Re: [twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread Ernandes Jr.
Are you running it on a Blackberry? :) On Wed, Aug 18, 2010 at 8:29 AM, LINUXGEEK wrote: > hello Ernandes up to now is studied your code but i am getting > structed while using the send() in your twitter api me 1.3 > > > thanks for the replay.. > > > > On Aug 18, 3:53 pm, "Ernandes Jr." wrote:

[twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread LINUXGEEK
hello Ernandes up to now is studied your code but i am getting structed while using the send() in your twitter api me 1.3 thanks for the replay.. On Aug 18, 3:53 pm, "Ernandes Jr." wrote: > Hi, > > Check my xAuth implementation in TwAPIme,www.twapime.com. Maybe you can > find what's wrong wi

[twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread LINUXGEEK
String postBody="status="+urlEncode("Test message"); here is the base string i am using String baseString = "POST&" + URLUTF8Encoder .encode("http://api.twitter.com/1/statuses/update.xml";)

Re: [twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread Ernandes Jr.
Hi, Check my xAuth implementation in TwAPIme, www.twapime.com. Maybe you can find what's wrong with your code. Regards, Ernandes On Wed, Aug 18, 2010 at 7:42 AM, Tom van der Woerdt wrote: > The problem is that the last time I did Java (this is Java, right?) was > ages ago (I was 12 back then)

Re: [twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread Tom van der Woerdt
The problem is that the last time I did Java (this is Java, right?) was ages ago (I was 12 back then) so I don't really know what the code is doing. The code looks fine to me, but like I said, I don't know Java very well. Can you show the actual request you make, instead of code? Like the "POST /1

[twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread LINUXGEEK
Thanks for the replay i was waiting for your replay here is my post body String postBody = "status=" + URLUTF8Encoder.encode("Test message"); here is the base String String baseString = "POST&" + URLUTF8Encoder

Re: [twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-18 Thread Tom van der Woerdt
Hi, That's a lot of code, but I prefer to know what it is doing over the actual code. So: can you post a request which you make to Twitter, and can you give the Base String which you use for generating the signature? Tom On 8/18/10 8:08 AM, LINUXGEEK wrote: > private void StatusUpdate() throws

[twitter-dev] Re: STATUS update after getting the Auth token using by using X-auth.

2010-08-17 Thread LINUXGEEK
private void StatusUpdate() throws CryptoTokenException, CryptoUnsupportedOperationException, IOException { String oauth_signature_method = "HMAC-SHA1"; String oauth_timestamp = String.valueOf(timestamp()); String oauth_nonce