Tagged Questions
The delicious-api tag has no wiki summary.
4
votes
2answers
734 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
1answer
124 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 ...
2
votes
6answers
542 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 \
...
1
vote
2answers
30 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 ...
1
vote
1answer
54 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, ...
1
vote
1answer
79 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
345 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 = ...
1
vote
2answers
62 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
1answer
37 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 ...
0
votes
1answer
457 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
304 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 = ...
0
votes
1answer
614 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
393 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 ...
0
votes
2answers
383 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
446 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 ...