Как я могу создать пост страницы, используя Facebook Javascript SDK? - PullRequest
0 голосов
/ 04 июля 2019

Мне нужно иметь возможность публиковать на бизнес-странице пользователя, используя Javascript SDK Facebook.

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

Я зарегистрировал своего пользователя, используя следующий javascript, полученный из документации Facebook, и он работает.

<script>

  // This is called with the results from from FB.getLoginStatus().
  function statusChangeCallback(response) {
    console.log('statusChangeCallback');
    console.log(response);
    // The response object is returned with a status field that lets the
    // app know the current login status of the person.
    // Full docs on the response object can be found in the documentation
    // for FB.getLoginStatus().
    if (response.status === 'connected') {
      // Logged into your app and Facebook.
      testAPI();
    } else {
      // The person is not logged into your app or we are unable to tell.
      document.getElementById('status').innerHTML = 'Please log ' +
        'into this app.';
    }
  }

  // This function is called when someone finishes with the Login
  // Button.  See the onlogin handler attached to it in the sample
  // code below.
  function checkLoginState() {
    FB.getLoginStatus(function(response) {
      statusChangeCallback(response);
    });
  }

  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'my app id',
      cookie     : true,  // enable cookies to allow the server to access 
                          // the session
      xfbml      : true,  // parse social plugins on this page
      version    : 'v3.3' // The Graph API version to use for the call
    });

    // Now that we've initialized the JavaScript SDK, we call 
    // FB.getLoginStatus().  This function gets the state of the
    // person visiting this page and can return one of three states to
    // the callback you provide.  They can be:
    //
    // 1. Logged into your app ('connected')
    // 2. Logged into Facebook, but not your app ('not_authorized')
    // 3. Not logged into Facebook and can't tell if they are logged into
    //    your app or not.
    //
    // These three cases are handled in the callback function.

    FB.getLoginStatus(function(response) {
      statusChangeCallback(response);
    });

  };

  // Load the SDK asynchronously
  (function(d, s, id) {
    var js, fjs = d.getElementsByTagName(s)[0];
    if (d.getElementById(id)) return;
    js = d.createElement(s); js.id = id;
    js.src = "https://connect.facebook.net/en_US/sdk.js";
    fjs.parentNode.insertBefore(js, fjs);
  }(document, 'script', 'facebook-jssdk'));

  // Here we run a very simple test of the Graph API after login is
  // successful.  See statusChangeCallback() for when this call is made.
  function testAPI() {
    console.log('Welcome!  Fetching your information.... ');
    FB.api('/me', function(response) {
      console.log('Successful login for: ' + response.name);
      document.getElementById('status').innerHTML =
        'Thanks for logging in, ' + response.name + '!';
    });
        }

    </script>

Затем я изменил код, добавив функцию postapi () для проверки сообщения на странице авторизованного пользователя, как показано ниже:

<script>
        function postapi() {
            FB.api(
                '/{your-page-id}/feed',
                'POST',
                { "message": "Awesome!" },
                function (response) {
                    // Insert your code here
                });
        }
  // This is called with the results from from FB.getLoginStatus().
  function statusChangeCallback(response) {
    console.log('statusChangeCallback');
    console.log(response);
    // The response object is returned with a status field that lets the
    // app know the current login status of the person.
    // Full docs on the response object can be found in the documentation
    // for FB.getLoginStatus().
    if (response.status === 'connected') {
      // Logged into your app and Facebook.
      testAPI();
    } else {
      // The person is not logged into your app or we are unable to tell.
      document.getElementById('status').innerHTML = 'Please log ' +
        'into this app.';
    }
  }

  // This function is called when someone finishes with the Login
  // Button.  See the onlogin handler attached to it in the sample
  // code below.
  function checkLoginState() {
    FB.getLoginStatus(function(response) {
      statusChangeCallback(response);
    });
  }

  window.fbAsyncInit = function() {
    FB.init({
      appId      : 'my app id',
      cookie     : true,  // enable cookies to allow the server to access 
                          // the session
      xfbml      : true,  // parse social plugins on this page
      version    : 'v3.3' // The Graph API version to use for the call
    });

    // Now that we've initialized the JavaScript SDK, we call 
    // FB.getLoginStatus().  This function gets the state of the
    // person visiting this page and can return one of three states to
    // the callback you provide.  They can be:
    //
    // 1. Logged into your app ('connected')
    // 2. Logged into Facebook, but not your app ('not_authorized')
    // 3. Not logged into Facebook and can't tell if they are logged into
    //    your app or not.
    //
    // These three cases are handled in the callback function.

    FB.getLoginStatus(function(response) {
      statusChangeCallback(response);
    });

  };

  // Load the SDK asynchronously
  (function(d, s, id) {
    var js, fjs = d.getElementsByTagName(s)[0];
    if (d.getElementById(id)) return;
    js = d.createElement(s); js.id = id;
    js.src = "https://connect.facebook.net/en_US/sdk.js";
    fjs.parentNode.insertBefore(js, fjs);
  }(document, 'script', 'facebook-jssdk'));

  // Here we run a very simple test of the Graph API after login is
  // successful.  See statusChangeCallback() for when this call is made.
  function testAPI() {
    console.log('Welcome!  Fetching your information.... ');
    FB.api('/me', function(response) {
      console.log('Successful login for: ' + response.name);
      document.getElementById('status').innerHTML =
        'Thanks for logging in, ' + response.name + '!';
    });
        }

    </script>

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

<fb:login-button scope="manage_pages,publish_pages,pages_show_list" onlogin="checkLoginState();">
</fb:login-button>

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

function placetoken() {
            var user_access_token = FB.getAuthResponse()['accessToken'];
            document.getElementById("<%=TextBox1.ClientID%>").value=user_access_token;
        }

Теперь мне нужно иметь возможность использовать маркер доступа пользователя, чтобы получить список страниц (включая идентификатор страницы и токен доступа к странице), которыми управляет пользователь, чтобы они могли выбрать одну для публикации.

Я пытался:

var user_pages=FB.api('/me/accounts', 'GET');

Но я не могу понять, как получить то, что возвращает API.

Я хотел бы иметь возможность использовать Javascript SDK Facebook для входа в систему и отправки сообщений на их бизнес-страницы.

Ответы [ 2 ]

0 голосов
/ 04 июля 2019

Чтобы опубликовать на странице (как странице, которая является единственной опцией), вам необходимо следующее:

  • Авторизуйтесь с разрешениями manage_pages и publish_pages.
  • Получить маркер страницы рассматриваемой страницы с помощью /page-id?fields=access_token
  • Используйте маркер страницы для публикации с /me/feed

Пример запроса с токеном страницы:

FB.api(
    '/me/feed',
    'POST',
    {message: 'Awesome!', access_token: 'the-page-token'},
    function (response) {
        // Insert your code here
    }
);

Имейте в виду, что новое сообщение увидят только пользователи с ролью в приложении, если вы не запустите приложение и не получите необходимые разрешения, проверенные Facebook.

0 голосов
/ 04 июля 2019

Для публикации на фиде страницы требуется токен, действительный для этой конкретной страницы, включая все необходимые разрешения, предоставленные администратором страницы.Поэтому сначала вам нужно получить разрешение manage_pages с помощью входа в систему, запросить токен страницы (например, через / me / account) для этой конкретной страницы, а затем выполнить фактический вызов фида публикации.

...