在网站上获取Facebook页面

时间:2018-02-08 14:28:02

标签: php facebook facebook-graph-api facebook-access-token app-secret

我试图在我网站的Facebook页面上查看所有帖子的概述。 但是我收到了一封无效的appsecret_proof提供的消息。当我在the Graph API Explorer中尝试时,一切正常,但是当我在我的测试版中尝试它时,它无法正常工作。我想知道是否存在某种互联网连接问题,或者我的代码/令牌有问题。

<?php
  require_once 'application/third_party/Facebook/autoload.php';
  $fb = new \Facebook\Facebook([
    'app_id' => '<app-id>',
    'app_secret' => '<app-secret>',
    'default_graph_version' => 'v2.10',
  ]);

  try {
    // Returns a `FacebookFacebookResponse` object
    $response = $fb->get(
      '/<page-id>/feed',
      '{<access-token>}'
    );
  } catch(FacebookExceptionsFacebookResponseException $e) {
    echo 'Graph returned an error: ' . $e->getMessage();
    exit;
  } catch(FacebookExceptionsFacebookSDKException $e) {
    echo 'Facebook SDK returned an error: ' . $e->getMessage();
    exit;
  }
  $graphNode = $response->getGraphNode();

    foreach ($graphNode['data'] as $post): ?>
      <section class="bg-primary">
        <div class="container">
          <div class="row">
            <div class="col-lg-8 mx-auto text-center">
              <h2 class="section-heading text-white">Verslag: <?php echo $post['created_time']; ?></h2>
              <hr class="light">
              <p class="text-faded"><<?php echo $post['message']; ?></p>
            </div>
          </div>
        </div>
      </section>
    <?php endforeach; ?>

1 个答案:

答案 0 :(得分:0)

就像Ceejayoz说的那样,我的页面和我的应用程序没有关联,这就是我收到无效的appsecret消息的原因。我在链接页面和我的应用时遇到了一些麻烦,但是这个问题得到了回答here