Facebook запрашивает разрешения у javascript? - PullRequest
1 голос
/ 03 июня 2010

Пытается сделать 2 вещи

запрос в автономном режиме и разрешение user_events постоянный сеансовый ключ

Нужен канал с фейсбука для событий, и для него нет rss. Любая помощь будет принята с благодарностью !!!

В настоящее время есть следующие

<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
    <!--<title>Connect JavaScript - jQuery Login Example</title>-->
  </head>
  <body>
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
  <script src="http://connect.facebook.net/en_US/all.js" type="text/javascript"></script>
    <div>
      <button id="login">Login</button>
      <button id="logout">Logout</button>
      <button id="disconnect">Disconnect</button>

    </div>

    <div id="fb-root"></div>

    <script type="text/javascript">
        // initialize the library with the API key
        FB.init({ apiKey: 'apikey' });

        // fetch the status on load
        FB.getLoginStatus(handleSessionResponse);

        $('#login').bind('click', function () {

            FB.Connect.showPermissionDialog('publish_stream');

        });

        $('#logout').bind('click', function () {
            FB.logout(handleSessionResponse);
        });

        $('#disconnect').bind('click', function () {
            FB.api({ method: 'Auth.revokeAuthorization' }, function (response) {
                clearDisplay();
            });
        });

        // no user, clear display
        function clearDisplay() {
            $('#user-info').hide('fast');
        }

        // handle a session response from any of the auth related calls
        function handleSessionResponse(response) {
            // if we dont have a session, just hide the user info
            if (!response.session) {
                clearDisplay();
                return;
            }

            // if we have a session, query for the user's profile picture and name
            FB.api(
          {
              method: 'fql.query',

              //Event pull
              query: 'SELECT eid, name, tagline, pic_big, host, description, event_type, event_subtype, start_time, end_time, creator, location, venue FROM event WHERE eid IN (SELECT eid FROM event_member WHERE uid =' + FB.getSession().uid + ')'

          },

          function (response) {
              var user = response[0];

              $('#user-info').html('eid: ' + user.eid).show('fast');

          }
        );
        }
    </script>

  </body>
</html>

1 Ответ

1 голос
/ 04 июня 2010

Я не думаю, что это поможет решить всю вашу проблему, однако код входа в систему, который я использовал в прошлом, выглядит примерно так:

$('#login').bind('click', function () {
    FB.init({appId: "<appid goes here>", status: true, cookie: true});
    FB.login(function(response) {
    if (response.session) {
            // user logged in, do whatever here
        } else {
            // user cancelled login
        }
    },{perms:"offline_access,user_events"});

    return false;
});
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...