如何显示我的欢迎文字?

时间:2011-10-15 02:19:08

标签: python facebook

登录后,我想要文本"欢迎,Niklas"要显示但登录后我必须重新加载page,我不知道如何使页面显示服务器变量current_user中的文本。如果我登录并按重新加载,则会显示正确的欢迎消息。你能帮我实现我想要的吗?为什么FB python + javascript没有简单的工作示例?我可以在没有JavaScript的情况下实现facebook连接吗?如果是这样,我是否必须自己使用并设置cookie?谢谢

{% load i18n %}
<!DOCTYPE html> 
<html xmlns:fb="https://www.facebook.com/2008/fbml">
  <head> 
    <title> 
      Test Facebook SDK
    </title> 
  </head> 
<body> 
<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '164355773607006', // App ID
      channelURL : '//WWW.KOOLBUSINESS.COM/static/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      oauth      : true, // enable OAuth 2.0
      xfbml      : true  // parse XFBML
    });
  };
  // Load the SDK Asynchronously
  (function(d){
     var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     d.getElementsByTagName('head')[0].appendChild(js);
   }(document));
</script>
<fb:login-button autologoutlink="true"></fb:login-button>
{% if current_user %}
<div id="user-ident">
<span>{% trans "Welcome," %} <b>{{ current_user.name|escape }}</b></span>
</div>
{% endif %}
</body> 
</html>

以下是我获取变量current_user

的方法
@property
def current_user(self):
    if not hasattr(self, "_current_user"):
        self._current_user = None
        cookie = facebook.get_user_from_cookie(
            self.request.cookies, facebookconf.FACEBOOK_APP_ID, facebookconf.FACEBOOK_APP_SECRET)
        logging.debug("logging cookie"+str(cookie))
        if cookie:
            # Store a local instance of the user data so we don't need
            # a round-trip to Facebook on every request
            user = FBUser.get_by_key_name(cookie["uid"])
            logging.debug("user "+str(user))
            logging.debug("username "+str(user.name))

            if not user:
                graph = facebook.GraphAPI(cookie["access_token"])
                profile = graph.get_object("me")
                user = FBUser(key_name=str(profile["id"]),
                            id=str(profile["id"]),
                            name=profile["name"],
                            profile_url=profile["link"],
                            access_token=cookie["access_token"])
                user.put()
            elif user.access_token != cookie["access_token"]:
                user.access_token = cookie["access_token"]
                user.put()
            self._current_user = user
    return self._current_user

1 个答案:

答案 0 :(得分:2)

使用Oauth 2.0时

FB.Init(...oauth=true) 

登录按钮正在将cookie设置到名为

的域中
fbsr_(appid)=....

使用 app密钥编码,不再包含用户令牌

如果你真的想避免使用java脚本客户端(这是最简单的方法),你可以利用这个cookie的存在来知道用户是否连接到facebook然后执行任何授权检查或动态显示欢迎辞。

我不使用python,所以我没有工作示例,但是这为您提供了一种搜索方式。

希望得到这个帮助。