1
vote
1answer
169 views

Delicious API call with RestSharp

I am trying to access the delicious API and decided to start using the RestSharp library for the calls. My test code looks like this: var client = new RestClient("https://api.del.icio.us/"); ...
0
votes
2answers
101 views

Can I use other methods beside HTTP-Auth to get Delicious.com API calls authenticated?

I'm developing an app that interacts with delicious.com using its API. For my application it is important use OAuth to authenticate delicious.com API calls. I read the doc at ...
2
votes
1answer
96 views

Delicious - Getting links in a stack via API

I have a user in delicious, and I have created a new stack. I am trying to get the links in that stack via the API. Preferably as an xml feed.. I haven't found any documented way to do this. Is this ...
1
vote
0answers
58 views

How to observe bookmarks tagged by a specific tag on Delicious via API/Feed?

I want to observer bookmarks on delicious that are tagged with a specific tag over time. So I want to retrieve as many bookmarks as possible on time t0 and get the tags for this bookmarks at time t1, ...
2
votes
1answer
337 views

Delicious .NET API with C#

I would like to create a C# application (.net 2.0 due to the API) to post new bookmarks to Delicious. I found a library: http://netlicious.sourceforge.net/ but I can't find any sample files. I added ...
4
votes
2answers
1k views

Create a Delicious Bookmarklet in Firefox using Delicious API

I want to create a Delicious bookmarklet in Firefox that bookmarks the current page with a predefined tag. For proof of concept, if I enter this url, it works: ...
0
votes
3answers
581 views

I want to port my delicious bookmarks to my website

I started building a app that will automatically download my delicious bookmarks, and save to a database, so they I can view them on my own website in my favoured format. I am forced to use oAuth, as ...
1
vote
2answers
75 views

I need to two bookmarkets for delicious

I am current researching on something and I need to create , lets say, two bookmarkets. If I need to read this article later then I just want to click on that bookmarket and it should tag the current ...
0
votes
2answers
680 views

Can OAuth access tokens be used for securing Permanent access to an account?

Can I use the request token given by the OAuth provider and use it forever? I am looking to build a service which interacts with the Delicious api and looks for updated bookmarks every fortnight. I ...