我可以創建pinterest分享嗎?我嘗試過使用這些,但它似乎失敗。Pinterest分享不帶別針按鈕
<a href="http://pinterest.com/pin/create/link/?url=google.com">Pin it</a>
<a href="http://pinterest.com/pin/create/button/?url=google.com">Pin it</a>
有什麼辦法,我可以創建一個沒有銷其按鈕Pinterest的共享鏈接?
我可以創建pinterest分享嗎?我嘗試過使用這些,但它似乎失敗。Pinterest分享不帶別針按鈕
<a href="http://pinterest.com/pin/create/link/?url=google.com">Pin it</a>
<a href="http://pinterest.com/pin/create/button/?url=google.com">Pin it</a>
有什麼辦法,我可以創建一個沒有銷其按鈕Pinterest的共享鏈接?
試着讓你的超級鏈接URL這樣的,這個工作對我來說
string url = "http://pinterest.com/pin/create/button/" +
"?url=" + "your link" +
"&media=" + "link to youre image" +
"&description=" + "your description";
媒體和描述可以是空白的,所以你可以做
string url = "http://pinterest.com/pin/create/button/" +
"?url=" + "" +
"&media=" + "" +
"&description=" + "";
中對其進行測試
我的代碼即時通訊按鈕按下後調用重定向,但我認爲這應該爲你工作。
重複? http://stackoverflow.com/questions/10690019/link-to-pin-it-on-pinterest-without-generating-a-button –