簡體   English   中英

PHP Facebook SDK

[英]PHP Facebook SDK

嗨,我需要幫助,我收到一個小錯誤

警告:第41行的C:\\ xampp \\ htdocs \\ facebooktest.php中的字符串偏移量'name'不合法。您使用自己的facebook帳戶登錄了Centralrp! [1]在顯示名稱時

<?php
// Remember to copy files from the SDK's src/ directory to a
// directory in your application on the server, such as php-sdk/
require_once('php-sdk/facebook.php');

$config = array(
'appId' => '*',
'secret' => '*',
'allowSignedRequest' => false // optional but should be set to false for noncanvas apps
);

$facebook = new Facebook($config);
$user_id = $facebook->getUser();
?>
<html>
<head></head>
<body>

<?php
if($user_id) {

  // We have a user ID, so probably a logged in user.
  // If not, we'll get an exception, which we handle below.
  try {
  if (!isset($_SESSION['user']['facebookposted']))
  {
    $ret_obj = $facebook->api('/me/feed', 'POST',
                                array(
                                  'link' => 'app.com',
                                  'message' => 'Just logged into App with      Facebook.'
                             ));
    echo '<pre>Post ID: ' . $ret_obj['id'] . '</pre>';
    $_SESSION['user']['facebookposted'] = true;
    //ADD THE LOGIN STUFF HERE LATER

    }
    else
    {
        $_SESSON['user']['loggedin'] = true;

        echo 'You are logged into centralrp using your facebook account! ['.$user_id['name'].']';
    }


    // Give the user a logout link 
    echo '<br /><a href="' . $facebook->getLogoutUrl() . '">logout</a>';
  } catch(FacebookApiException $e) {
    // If the user is logged out, you can have a 
    // user ID even though the access token is invalid.
    // In this case, we'll get an exception, so we'll
    // just ask the user to login again here.
    $login_url = $facebook->getLoginUrl( array(
                   'scope' => 'publish_stream'
                   )); 
    echo 'Please <a href="' . $login_url . '">login.</a>';
    error_log($e->getType());
    error_log($e->getMessage());
  }   
} else {

  // No user, so print a link for the user to login
  // To post to a user's wall, we need publish_stream permission
  // We'll use the current URL as the redirect_uri, so we don't
  // need to specify it here.
  $login_url = $facebook->getLoginUrl( array( 'scope' => 'publish_stream' ) );
  echo 'Please <a href="' . $login_url . '">login.</a>';

} 

?>      

$user_id沒有name鍵,因為$user_id不是數組。

如果需要名稱,請按以下方式獲取:

try {
    $user_info = $facebook->api('/me/');
    echo '<pre>Name: ' . $user_info['name'] . '</pre>';
} catch(FacebookApiException $e) {
    echo 'There was an error';
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM