[appengine-java] Re: Access Failure when authenticating to Restful API

2010-03-08 Thread ljgarcia
Hello there, Thanks for the answer. Here goes the code: HttpURLConnection conn; URL url = new URL(https://api.del.icio.us/v1/posts/all?;); conn = (HttpURLConnection) url.openConnection(); conn.setDoInput(true); conn.setDoOutput(true);

Re: [appengine-java] Re: Access Failure when authenticating to Restful API

2010-03-08 Thread Chummar Maly
If you are using a Yahoo Id for authentication, then you'll have to use the v2 url and use Oauth. You can find more on this here : http://delicious.com/help/api http://delicious.com/help/apiHope this helps. Chummar On Mon, Mar 8, 2010 at 9:48 AM, ljgarcia leylaj...@gmail.com wrote: Hello

[appengine-java] Re: Access Failure when authenticating to Restful API

2010-03-08 Thread ljgarcia
Hello Chummar, I am not using Yahoo Id but I already found a different way to connect with delicious, using Base64 encoding instead Authenticator: HttpURLConnection conn; URL url = new URL(urlString); conn = (HttpURLConnection) url.openConnection();

Re: [appengine-java] Re: Access Failure when authenticating to Restful API

2010-03-08 Thread Chummar Maly
Very good and thanks for sharing. On Mon, Mar 8, 2010 at 11:27 AM, ljgarcia leylaj...@gmail.com wrote: Hello Chummar, I am not using Yahoo Id but I already found a different way to connect with delicious, using Base64 encoding instead Authenticator: HttpURLConnection conn;