Tagged Questions
0
votes
1answer
353 views
Using cURL/OAuth to access del.icio.us api
I'm following this tutorial to access the del.icio.us api, but this is my first time using cURL or OAuth so hitting a few snags.
I'm using the following code
$ch = curl_init();
curl_setopt($ch, ...
0
votes
1answer
246 views
Need help adding a bookmark to Delicious using cURL
I'm trying to write a class that can add a bookmark to my Delicious account.
Here's my method:
public function addBookmark($url, $description) {
$dusername = 'myUsername';
$dpassword = ...