2013-10-08 69 views
1

我可以創建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的共享鏈接?

+0

重複? http://stackoverflow.com/questions/10690019/link-to-pin-it-on-pinterest-without-generating-a-button –

回答

0

試着讓你的超級鏈接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=" + ""; 

中對其進行測試

我的代碼即時通訊按鈕按下後調用重定向,但我認爲這應該爲你工作。

+0

關閉。替換/按鈕/ with/link/ – Imperative

+0

不能得到這個工作.. – Alfie

+0

參數'source_url'不是一個有效的URL格式。 – Alfie