[oauth] Re: Simplify OAuthCredentials

2009-06-13 Thread Morten Fangel
Hi Mandakini, You want examples on how to to 2-legged consumers or 2-legged service providers in PHP? Currently 2-legged service-providers aren't supported (but easily added by extending OAuthServer). 2-legged consumers would just be your standard consumer where you pass in a blank access token

[oauth] Re: Simplify OAuthCredentials

2009-06-12 Thread John Kristian
Done, in -r1052 of the Java library http://oauth.googlecode.com/svn/code/java/core/httpclient4/ Thanks for the suggestion. On Jun 8, 12:01 pm, Paul Austin paul.d.aus...@gmail.com wrote: Could a new constuctor be added which just accepted a consumerKey and consumerSecret and automatically

[oauth] Re: Simplify OAuthCredentials

2009-06-12 Thread Mandakini kumari
Hi Thnaks for your quick response. Any luck to get code in php ? or concept how to do it ? On Fri, Jun 12, 2009 at 10:14 PM, John Kristian jmkrist...@gmail.comwrote: Done, in -r1052 of the Java library http://oauth.googlecode.com/svn/code/java/core/httpclient4/ Thanks for the suggestion.

[oauth] Re: Simplify OAuthCredentials

2009-06-08 Thread Leah Culver
Which library? Java? Thanks! On Mon, Jun 8, 2009 at 12:01 PM, Paul Austin paul.d.aus...@gmail.comwrote: Currently the following is required to create an OAuthCredentials. new OAuthCredentials(new OAuthAccessor(new OAuthConsumer(null, consumerKey, consumerSecret, null))) Could a new