简体   繁体   中英

How to change story info (Open Graph)?

在此处输入图片说明

I created new story. But it as you can see it looks not good. How can I remove (change) text ("Sample Score") and link (samples.ogp.me/23512374_______) and add other picture?

To change story content, you need to put opengraph meta tags in your page like

<meta property="og:title" content="The Rock"/>
<meta property="og:type" content="movie"/>
<meta property="og:url" content="http://www.imdb.com/title/tt0117500/"/>
<meta property="og:image" content="http://ia.media-imdb.com/rock.jpg"/>

These meta tags define your story item content. For example...

How can I remove (change) text ("Sample Score") ?

ANS: You can change it here:

<meta property="og:title" content="YOUR TEXT"/>

add other picture?

ANS: You can change it here:

<meta property="og:image" content="YOUR TEXT"/>

For more details, please see http://developers.facebook.com/docs/opengraphprotocol/

And then it should work fine :)


To debug your page and see if you correctly implemented opengraph tags use the debugger tool here: http://developers.facebook.com/tools/debug/

Hope that helps

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM