1

有没有办法将从 javascript 获得的会话存储到 PHP 的会话中?我知道我必须做一个POST,有人可以给我一个例子吗?这是我到目前为止所拥有的:我想将 uid 存储在 PHP 的会话中

<script type="text/javascript">
                jQuery(document).ready(function() {
                    FB.init({appId: '135570939849404', status: true, cookie: true, xfbml: true});

                    FB.getLoginStatus(function(response) {
                    if (response.session) {
                         //do smething?
                     }else {
                        window.location = "index.php"
                     }       
                    });


                });
        </script>
4

2 回答 2

0

uid 作为 response.session.uid 存储在 FB 对象中,这是您需要通过 Ajax 发送的参数。

<script type="text/javascript">
            jQuery(document).ready(function() {
                FB.init({appId: '135570939849404', status: true, cookie: true, xfbml: true});

                FB.getLoginStatus(function(response) {
                if (response.session) {
                     jQuery.ajax({ 
                                async:true, 
                                type: "POST", 
                                url: ("/yourTarget.php"), 
                                dataType : 'json',
                                data: {uid : response.session.uid},
                                success : function(data){
                                    alert("success");
                                },
                                error : function(XMLHttpRequest, textStatus, errorThrown) {
                                    alert("error");
                                }

                        });

                 }else {
                    window.location = "index.php"
                 }       
                });


            });
    </script>

会话数据全部存储在您在 javaScript 中读取的 cookie 中。如果您想使用类似以下代码的内容,当然可以直接从 PHP 访问这些数据:

function get_facebook_session_data($app_id, $application_secret) {
    $cookieName = 'fbs_' . $app_id;
    if (!isset($_COOKIE[$cookieName])) {
        return null;
    }
    $fb_session = array();
    //If magic_quotes is set then stripslashes else strip doublequotes then trim the cookie contents.
    //Parse the cookie - loading each parameter into an associative array $fb_session.
    parse_str(trim(get_magic_quotes_gpc() ? stripslashes($_COOKIE[$cookieName]): $_COOKIE[$cookieName],'"'), $fb_session);
    return $fb_session; 

}

$fb_session['uid'] 有所需的数据!

还有一个 PHP SDK 可以创建一个包含这些数据的对象: https ://github.com/facebook/php-sdk/

您可以使用 getUser() 方法获取 UID .....

于 2011-04-29T15:52:19.313 回答
0

显然你知道你想做什么,所以使用 Jquery 的 ajax 方法。在那里您可以启用 post 方法。

jQuery.ajax({ 
  async:true, 
  type: "POST", 
  url: ("/yourTarget.php"), 
    dataType : 'json',

    data: {email : 'Jeremy'},

    success : function(data){

        alert("success");

    },

    error : function(XMLHttpRequest, textStatus, errorThrown) {
        alert("error");
    }

});
于 2011-04-29T15:08:35.383 回答