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 this web site project in development, a typical e-commerce buy-sell website. Visitors can browse items, then click on it to go to a page providing details of the item; this is done using a query string to pass the item ID to the item detail page. On this item detail page I have put the code for the Facebook Like and Share button as shown here (I only did Step 1; not using Open Graph Tags):

https://developers.facebook.com/docs/reference/plugins/like/

I modified the that contains the Like and Share button like this:

<div id="fb" runat="server" class="fb-like" data-href="javascript:getThisHref()" data-send="true" data-width="450" data-show-faces="true"></div>

Where getThisHref() is a javascript function as follows:

function getThisHref(){
        var thisUrl =document.URL;
        //alert(thisUrl);
        return thisUrl;
       }

I have tested the function with the alert(thisUrl) and it has the correct address (http://localhost:63179/ProjectName/Product_Like.aspx?prod=ITWA000000) where prod is the query string for the product. However the Like and Share button do not appear.

Now I'm sure the problem is that the address is localhost..the question is is there anything I can do to make it work?

I'm not planning to upload the website to an actual server to be accesses by others as it is just a college project, just FYI~

Thanks for any advice or w/e you guys can offer.

share|improve this question
possible duplicate of Hot to test "Like" button on localhost? – Igy Jan 4 at 18:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.