[twitter-dev] Twitter xAuth using Java

2010-09-18 Thread Hitesh
I was successfully managed to implement twitter xAuth permissions
using Java. I have used Twitter4J package for it. Also i have posted
the code snippets on a href=http://www.hiteshagrawal.com/java/
twitter-xauth-permission-using-javaTwiiter xAuth Permission in Java/
a

-- 
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] Re: Need inputs to implement Twitter app using xAuth

2010-09-18 Thread Hitesh
Hi All,
I was successfully managed to implement twitter xAuth permissions
using Java. I have used Twitter4J package for it. Also i have posted
the code snippets on a href=http://www.hiteshagrawal.com/java/
twitter-xauth-permission-using-javaTwiiter xAuth Permission in Java/
a

On Jul 28, 2:29 pm, Sambath Chandran sambat...@gmail.com wrote:
 All,
 I am implementing an application to receive and the latest tweet from the
 twitter. After refering to twitter website, I concluded to use xAuth
 authentication for my development.

 Can anybody let me know is there any ready to use java library for xAuth?

 Basially I want to know to how to make xAuth work with Java.

 Thanks,
 Sambath

-- 
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] how to destroy the tweet by HTTP POST?

2009-07-22 Thread Hitesh

I manage to post a tweet with HTTP POST. Then I dumped the result. It
was in the XML format. I got this value within XML tag id2774581598/
id when I posted it successfully. I believe this is a twit numeric
identifier we can use to destroy it but I'm getting 404 error.

Now I wish to delete (destroy) the same twit...I'm trying with
following code but it does NOT work.

cfhttp url=http://twitter.com/statuses/destroy/
#arguments.statusID#.xml method=post
username=#arguments.username# password=#arguments.password#
useragent=twitterCFC
cfhttpparam name=id value=#arguments.statusID#
type=formfield /
/cfhttp

where  arguments.statusID = 2774581598.

Can someone help me please?

Thanks.