我从here安装了旧库,然后解压缩了facebook.php文件,并在索引.php文件的同一文件夹中写了一个index.php文件,只显示hello“username”; 但问题是index.php在浏览器中运行时没有显示任何内容,它是空白的。
我的系统上安装了xamp。
我的index.php代码是:
<?php
// Copyright 2007 Facebook Corp. All Rights Reserved.
//
// Application: birthdaypost
// File: 'index.php'
// This is a sample skeleton for your application.
//
require_once 'facebook.php';
$api_key = 'fda501108b3b955bcf0f87a4008bc786';
$secret = '833b35812a3e6b379a5158b2f3f0611f';
$facebook = new Facebook($api_key, $secret);
$user_id = $facebook->require_login();
// Greet the currently logged-in user!
echo "<p>Hello, <fb:name uid=\"$user_id\" useyou=\"false\" />!</p>";
?>
答案 0 :(得分:0)
将Facebook App Canvas设置设置为“FBML”而不是“IFrame”。
确保回声线看起来像:
echo“Hello&lt; fb:name uid = \”$ user_id \“useyou = \”false \“/&gt;!”