【问题标题】:facebook and socket.io node.jsfacebook 和 socket.io node.js
【发布时间】:2012-06-04 01:00:16
【问题描述】:

我有一个好主意,但我有一些问题......如何将 facebook 用户连接到节点应用程序 - socket.io

我创建了一个 socket.io 聊天,但现在希望允许 facebook 用户来聊天以创建类似 facebook group CHAT 的东西。我觉得这个主意不错?

这是我的聊天代码:

服务器端文件 - app.js

var app = require('express').createServer()
var io = require('socket.io').listen(app);

app.listen(8080);

// routing
app.get('/', function (req, res) {
  res.sendfile(__dirname + '/index.html');
});

// usernames which are currently connected to the chat
var usernames = {};

// rooms which are currently available in chat
var rooms = ['room1','room2','room3'];

io.sockets.on('connection', function (socket) {

    // when the client emits 'adduser', this listens and executes
    socket.on('adduser', function(username){
        // store the username in the socket session for this client
        socket.username = username;
        // store the room name in the socket session for this client
        socket.room = 'room1';
        // add the client's username to the global list
        usernames[username] = username;
        // send client to room 1
        socket.join('room1');
        // echo to client they've connected
        socket.emit('updatechat', 'SERVER', 'you have connected to room1');
        // echo to room 1 that a person has connected to their room
        socket.broadcast.to('room1').emit('updatechat', 'SERVER', username + ' has connected to this room');
        socket.emit('updaterooms', rooms, 'room1');
    });

    // when the client emits 'sendchat', this listens and executes
    socket.on('sendchat', function (data) {
        // we tell the client to execute 'updatechat' with 2 parameters
        io.sockets.in(socket.room).emit('updatechat', socket.username, data);
    });

    socket.on('switchRoom', function(newroom){
        // leave the current room (stored in session)
        socket.leave(socket.room);
        // join new room, received as function parameter
        socket.join(newroom);
        socket.emit('updatechat', 'SERVER', 'you have connected to '+ newroom);
        // sent message to OLD room
        socket.broadcast.to(socket.room).emit('updatechat', 'SERVER', socket.username+' has left this room');
        // update socket session room title
        socket.room = newroom;
        socket.broadcast.to(newroom).emit('updatechat', 'SERVER', socket.username+' has joined this room');
        socket.emit('updaterooms', rooms, newroom);
    });

    // when the user disconnects.. perform this
    socket.on('disconnect', function(){
        // remove the username from global usernames list
        delete usernames[socket.username];
        // update list of users in chat, client-side
        io.sockets.emit('updateusers', usernames);
        // echo globally that this client has left
        socket.broadcast.emit('updatechat', 'SERVER', socket.username + ' has disconnected');
        socket.leave(socket.room);
    });
});

和 index.html

<script src="/socket.io/socket.io.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script>
    var socket = io.connect('http://localhost:8080');

    // on connection to server, ask for user's name with an anonymous callback
    socket.on('connect', function(){
        // call the server-side function 'adduser' and send one parameter (value of prompt)
        socket.emit('adduser', prompt("What's your name?"));
    });

    // listener, whenever the server emits 'updatechat', this updates the chat body
    socket.on('updatechat', function (username, data) {
        $('#conversation').append('<b>'+username + ':</b> ' + data + '<br>');
    });

    // listener, whenever the server emits 'updaterooms', this updates the room the client is in
    socket.on('updaterooms', function(rooms, current_room) {
        $('#rooms').empty();
        $.each(rooms, function(key, value) {
            if(value == current_room){
                $('#rooms').append('<div>' + value + '</div>');
            }
            else {
                $('#rooms').append('<div><a href="#" onclick="switchRoom(\''+value+'\')">' + value + '</a></div>');
            }
        });
    });

    function switchRoom(room){
        socket.emit('switchRoom', room);
    }

    // on load of page
    $(function(){
        // when the client clicks SEND
        $('#datasend').click( function() {
            var message = $('#data').val();
            $('#data').val('');
            // tell server to execute 'sendchat' and send along one parameter
            socket.emit('sendchat', message);
        });

        // when the client hits ENTER on their keyboard
        $('#data').keypress(function(e) {
            if(e.which == 13) {
                $(this).blur();
                $('#datasend').focus().click();
            }
        });
    });

</script>
<div style="float:left;width:100px;border-right:1px solid black;height:300px;padding:10px;overflow:scroll-y;">
    <b>ROOMS</b>
    <div id="rooms"></div>
</div>
<div style="float:left;width:300px;height:250px;overflow:scroll-y;padding:10px;">
    <div id="conversation"></div>
    <input id="data" style="width:200px;" />
    <input type="button" id="datasend" value="send" />
</div>

以及如何让用户通过 fbLogin 按钮使用他们的 facebook 帐户进入 chta:

这是 fb 登录代码,但如何在我的聊天脚本中实现此代码以允许用户使用 facebook 帐户。

<button id="fb-auth">Login</button>

<script>
function updateButton(response) {
  Log.info('Updating Button', response);
  var button = document.getElementById('fb-auth');

  if (response.status === 'connected') {
    button.innerHTML = 'Logout';
    button.onclick = function() {
      FB.logout(function(response) {
        Log.info('FB.logout callback', response);
      });
    };
  } else {
    button.innerHTML = 'Login';
    button.onclick = function() {
      FB.login(function(response) {
        Log.info('FB.login callback', response);
        if (response.status === 'connected') {
          Log.info('User is logged in');
        } else {
          Log.info('User is logged out');
        }
      });
    };
  }
}

【问题讨论】:

  • 尝试了一些方法但没有工作
  • 什么你试过了吗?你不能只是在这里倾倒大量未完成的代码,并期望其他人为你完成它。更具体地说明您尝试过的 what 以及 what 不适合您。

标签: facebook node.js facebook-graph-api express socket.io


【解决方案1】:

我做过类似的事情:http://codemygenes.appspot.com/nodejs/fbchat/fbchat.html。但它太复杂了,无法理解。我在 Heroku 上部署了一个 socket.io 聊天(node.js 应用程序)。我也使用了 Facebook 身份验证。为此,我遵循以下几点:

  1. 转到http://developers.facebook.com/docs/reference/api/。他们有一个关于 Graph API 的简洁文档。

  2. 你必须在服务器上部署应用程序(比如 Heroku 甚至你的本地主机!)。

  3. 在 facebook 上注册应用程序。 http://developers.facebook.com/apps

  4. Facebook 将为您的应用程序提供一个 ID 和 Client_secret 代码。而且您每次都必须使用该 ID 和密码对应用进行身份验证。

简而言之,转到 facebook graph API 文档,您已经掌握了所有内容...

查看演示here

【讨论】:

    【解决方案2】:

    我在我的应用 Snakes-n-Ladders 多人游戏 (https://apps.facebook.com/snakes-n-ladders/) 中做了类似的事情。您需要在服务器上对用户进行身份验证。

    我正在使用的库:facebook-node-sdk。

    您需要在初始化 JavaScript SDK 时输入 cookie : true 。这样在客户端通过身份验证的用户将在服务器上进行身份验证。

    FB.init({
      appId      : 'YOUR_APP_ID', // App ID
      channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html', // Channel File
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
    });
    

    阅读 facebook-node-sdk 的文档,您将了解服务器上的所有用户信息。您可以将数据附加到套接字会话。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2017-01-05
      • 2013-05-27
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2022-12-02
      • 2017-02-26
      相关资源
      最近更新 更多