문제

With the facebook iframe like button, am I able to specify what text shows up in a users stream?

When I use a plugin for a wordpress blog post it shows up at

USERNAMe likes POST TITLE on BLOG NAME

but when I try and put it on another page with the straight up iframe code, i just get:

USERNAME likes http://www.pagename.com/bla/bla/bla

How can I specify what text shows up?

도움이 되었습니까?

해결책

Do you have open graph tags on your page, like:

<html xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
    <meta property="og:image" content="..." /> 
    <meta property="og:site_name" content="..." /> 
    <meta property="og:title" content="..." /> 
    <meta property="og:url" content="..." /> 
    <meta property="og:description" content="..." /> 
    <meta property="og:type" content="article" /> 
</head>

More about those here.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top