我可以创建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 :(得分:0)
尝试制作这样的超链接网址,这对我有用
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=" + "";
测试出来
在我的代码中我按下按钮后调用重定向,但我认为这应该适合你。