我有一个问题!
我想在我的Facebook页面上的标签上自定义消息。
例如:Hello Steffi
或Hello Kevin
我该怎么办呢?
fb:user
?
谢谢!
答案 0 :(得分:0)
Hello, <fb:name uid="1234567890" captialize="true" firstnameonly="true" useyou="false"><a class="fb_link" href="http://www.facebook.com/profile.php?id=534481565">Kim's</a></fb:name>
您将“1234567890”替换为您要显示名称的用户的用户ID。
PHP SDK有一个获取登录用户ID的示例:
https://github.com/facebook/php-sdk/blob/master/examples/example.php
答案 1 :(得分:0)
我正在使用此代码段,它就像一个魅力。
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId: 'APP_ID',
cookie: true,
xfbml: true,
oauth: true
});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
<fb:serverFbml>
<script type="text/fbml">
<div style="font-size:2em;" >
Hello, <fb:userlink uid="loggedinuser"/>
</div>
</script>
</fb:serverFbml>
是的,不要将<html xmlns:fb="http://www.facebook.com/2008/fbml">
置于其顶部。
由于
萨钦