javascript Pinterest分享没有pin it按钮

ebdffaop  于 2023-04-19  发布在  Java
关注(0)|答案(2)|浏览(104)

我可以创建pinterest共享没有pin it按钮吗?我试过使用这些,但似乎失败了。

<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共享链接而不需要pin it按钮?

eimct9ow

eimct9ow1#

尝试使您的超链接网址像这样,这对我的工作

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=" + "";

来测试一下
在我的代码中,我在按下按钮后调用重定向,但我认为这应该对你有用。

ccrfmcuu

ccrfmcuu2#

<a 
        data-pin-do="buttonBookmark" 
        data-pin-lang="en"
        href={`https://www.pinterest.com/pin/create/button/?url=${anyHttpsURL}&medial=${anyHttpsImageURL}&description=${encodeURIComponent(pinterestDescription)}`} 
    >
      <Image src={PinterestIcon} /> Pinterest
    </a>

相关问题