Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a JavaScript function for sharing on Pinterest like this:

function shareOnPinterest(url, desc, coverImage){

var str = "http://pinterest.com/pin/create/button/?url=" + encodeURIComponent(url) + "&media=" + coverImage + "&description=" +
desc;

window.open(str, "_blank");         

}

The URL seems to be working fine but when I click Pin It button it doesn't pin to the board.

I have a reference to this Pinterest JavaScript on my page too.

<script type="text/javascript" src="//assets.pinterest.com/js/pinit.js"></script>

Is there anything I did wrong or is there any other way to share on Pinterest?

Thanks.

share|improve this question
your shareOnPinterest function does not require pinit.js. Where do you find this script ? – Shivan Raptor Aug 16 '12 at 6:17
I found the url from pinterest.com/about/goodies here and it says need to include pinit.js on the page and script I did it myself. – zaw Aug 16 '12 at 6:23
You misunderstand it. You should look into the codes in Pin It button instead. – Shivan Raptor Aug 16 '12 at 7:36

1 Answer

up vote 1 down vote accepted

I'm not sure what you're wanting... a button for your webpage or to simply pin images?

This codes works to pin images:

javascript:void((function(){var%20e=document.createElement('script');e.setAttribute('type','text/javascript');e.setAttribute('charset','UTF-8');e.setAttribute('src','http://assets.pinterest.com/js/pinmarklet.js?r='+Math.random()*99999999);document.body.appendChild(e)})());
share|improve this answer
thanks m8 I found the problem it was because of the sharing text. I remove the "&" from sharing text and now its working :) cheers – zaw Aug 16 '12 at 9:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.