posting page title on the facebook when user clicks on like button in asp.net -


i have button on website, whenever click on button, information posted on facebook wall proper url, issue there no proper page title, , image on facebook wall, want customize information. mean want post page title, coz page title changes every article, , want post image of article on facebook...

how can post customize information on facebook on button click.

you need include open graph tags on site in order customize title.

you

  <meta property="og:title" content="my title"/> 

https://developers.facebook.com/docs/opengraph/

make sure include required tags (title, url, site_name, type, image) , include namespaces:

 <html xmlns="http://www.w3.org/1999/xhtml"         xmlns:og="http://ogp.me/ns#"        xmlns:fb="https://www.facebook.com/2008/fbml"> 

hope helps.


Comments

Popular posts from this blog

linux - Using a Cron Job to check if my mod_wsgi / apache server is running and restart -

actionscript 3 - TweenLite does not work with object -

jQuery Ajax Render Fragments OR Whole Page -