The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
165 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 ...
0
votes
1answer
1k views

WP7 error: “The remote server returned an error: NotFound.”

I have this code that it used to work, but at some specific time it stopped to work and returned the error "The remote server returned an error: NotFound." WebClient deliciousWebClient = new ...
2
votes
1answer
95 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
189 views

Delicious bookmarks count not retrieving

I am using the below code to get the delicious bookmarks count of some sites. But it's not working fine. Is there any problem with the API or my code? <script type="text/javascript"> ...
0
votes
1answer
84 views

How do I add a link to a stack/bundle using the Delicious API?

So, I've create a link with tag "test" on Delicious. Now I want to add the link to my "TestStack" stack/bundle/whatever using the Delicious API. The documentation says you can do so using ...
0
votes
4answers
155 views

How to add Delicious post with multiple tags in ruby

How can I add a post with more than one tag? I'm doing this. The post is added to my Delicious collection but without tags. require 'www/delicious' d_api = WWW::Delicious.new('username', ...
1
vote
2answers
72 views

Does Delicious use GET requests for creation instead of POST, and why shouldn't I do the same?

I'm looking at the Delicious API and see the following is the operation to create a new bookmark: https://api.del.icio.us/v1/posts/add?&url={URL}&description={description} It looks like ...
0
votes
1answer
345 views

How to install the pydelicious Python del.icio.us API?

I am running Python 2.4 on Windows XP and installed pydelicious API version 0.6. Upon running the install script I get ImportError: No module named etree.ElementTree. How to install it? Which ...
1
vote
1answer
176 views

How to retrieve delicious related tags

I have found this example here which uses delicious related tags and create a graph. But I don't know how they implemented it. I don't know how to get a list of related tags from delicious API, ...
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 ...
0
votes
1answer
734 views

Delicious PHP oAuth Yahoo SDK Add Bookmark

I'm really having a difficult time trying to find a way to successfully authenticate a user and post a bookmark to their delicious account. I downloaded Yahoo's YOS Social SDK then began modifying ...
0
votes
1answer
419 views

signature_invalid oauth delicious.com API coldfusion

im getting signature_invalid error when trying to connect via oauth to delicious.com. <cfset oUrl = "https://api.login.yahoo.com/oauth/v2/get_request_token"/> <cfset oauth_nonce = ...
1
vote
1answer
91 views

Is there a script or other method for obtaining the correct variation of a URL for a web page?

I'm assuming there is a single correct variation of a URL for every page. Please correct me if I'm wrong. Given an input of an equivalent URL, I need to get the correction of a URL. For example, ...
1
vote
1answer
650 views

Create a 'send to Delicious' bookmarklet with custom tag

I've created a javascript bookmarklet that gets the current page's title and URL, using the following code: //Check to see if jQuery is already loaded if (typeof jQuery == 'undefined') { var jQ = ...
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: ...
2
votes
2answers
828 views

Delicious API and Yahoo oAuth in .NET

The fact that Delicious has two sets of API authentications one with username and password and one with oAuth told me something about things I was going to experience and I wasn't wrong. Unfortunately ...
0
votes
3answers
580 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
677 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 ...
0
votes
2answers
577 views

Delicious API replies with “access denied”

I'm trying to access all posts from delicious, according to delicious API. In Ubuntu Linux i give the command: curl https://myusername:mypassword@api.del.icio.us/v1/posts/all where myusername and ...
3
votes
6answers
619 views

Http Auth in a Firefox 3 bookmarklet

Im trying to create a bookmarklet for posting del.icio.us bookmarks to a seperate account. I tested it from the command line like: wget -O - --no-check-certificate \ ...