Tôi đang cố gắng tạo một bookmarklet để đăng dấu trang del.icio.us lên một tài khoản riêng biệt.Http Xác thực trong dấu trang Firefox 3
Tôi đã thử nghiệm nó từ dòng lệnh như:
wget -O - --no-check-certificate \
"https://seconduser:[email protected]/v1/posts/add?url=http://seet.dk&description=test"
và các công trình này tuyệt vời.
Sau đó tôi muốn tạo một bookmarklet trong firefox của mình. Tôi googled và thấy bit và miếng và kết thúc với:
javascript:void(
open('https://seconduser:[email protected]/v1/posts/add?url='
+encodeURIComponent(location.href)
+'&description='+encodeURIComponent(document.title),
'delicious','toolbar=no,width=500,height=250'
)
);
nhưng tất cả những gì xảy ra là tôi có được điều này từ del.icio.us:
<?xml version="1.0" standalone="yes"?>
<result code="access denied" />
<!-- fe04.api.del.ac4.yahoo.net uncompressed/chunked Thu Aug 7 02:02:54 PDT 2008 -->
Nếu tôi sau đó đi đến thanh địa chỉ và nhấn enter, thay đổi thành:
<?xml version='1.0' standalone='yes'?>
<result code="done" />
<!-- fe02.api.del.ac4.yahoo.net uncompressed/chunked Thu Aug 7 02:07:45 PDT 2008 -->
Bất kỳ ý tưởng nào làm cho nó hoạt động trực tiếp từ dấu trang?