vote up 1 vote down star

I'm trying to connect a desktop application I am writing with the del.icio.us api @ http://delicious.com/help/api and simply provide them with my username and password and to request an url to post a bookmark to my profile.

The problem I have is that I don't understand how to send my login credentials when I open a connection.

How would I go about doing this?

flag
Do you mean HTTP Basic Authentication? – AJ Nov 7 at 16:05
if you look at the link for the api, the example link i would have to type into my browser to add a bookmark is api.del.icio.us/v1/posts/… – sn3twork Nov 7 at 16:08
See my updated answer :) – AJ Nov 7 at 16:12

4 Answers

vote up 1 vote down check

From the site you referenced:

All /v1 api's require https requests and HTTP-Auth.

HTTP-Auth is header used in basic authentication.
In Java, you can simply put your credentials in the URL:

http://user:pass@www.example.com/

You can verify that it was set correctly using the URL.getUserInfo() method.

link|flag
vote up 0 vote down

HttpURLConnection does allow you to do basic auth, but if you want more complex authentication to be able to work, give Apache HTTPClient a shot. It can seamlessly-handle http authentication schemes like Basic and Digest without you even noticing.

HTTPClient Authentication Guide

link|flag
vote up 0 vote down

If you just need HTTP Basic Authentication, you can form your URL like this:

http://user:password@www.website.com


UPDATE:

Using the example provided, this should work:

https://user:password@api.del.icio.us/v1/posts/add&url=http://www.google.com&description=awesome
link|flag
apparently this doesn't work anymore.. at least not with the account I made. I think it has something to do with yahoo recently taking over delicious – sn3twork Nov 7 at 16:39
vote up 0 vote down

HttpUrlConnection allows you to perform basic authentication. The more powerful HttpClient libraru offers you more solutions (basic, digest, and NTLM - which I don't think you need).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.