dongxizhe9755 2015-11-08 20:16
浏览 84
已采纳

在laravel 5 facebook graph api中找不到Facebook类

I am using facebook graph api in laravel 5.1.I have installed it usnig composer command

composer require facebook/php-sdk-v4

the facebook graph api has been installed but when i create the facebook api object in laravel then it's give me this error

Class 'App\Http\Controllers\Userapp\Facebook\Facebook' not found

it is in this line

$fb = new Facebook\Facebook([

here is my Controller file

<?php namespace App\Http\Controllers\Userapp;
require_once( base_path('vendor/facebook/php-sdk-v4/src/Facebook/autoload.php') );
// Facebook Requires
use Facebook\FacebookSession;
use Facebook\FacebookRedirectLoginHelper;
use Facebook\FacebookRequest;
use Facebook\FacebookResponse;
use Facebook\FacebookSDKException;
use Facebook\FacebookRequestException;
use Facebook\FacebookAuthorizationException;
use Facebook\GraphObject;
use Facebook\Entities\AccessToken;
use Facebook\HttpClients\FacebookHttpable;
use Facebook\HttpClients\FacebookCurlHttpClient;
use Facebook\HttpClients\FacebookCurl; 

and the function of the controller

public function index()
    {   
        // init app with app id and secret
        $fb = new Facebook\Facebook([
          'app_id' => 'xxxxxxxxxxxxxxx',
          'app_secret' => 'xxxxxxxxxxxxxxxxx',
          'default_graph_version' => 'v2.5',
          //'default_access_token' => '{access-token}', // optional
        ]);


        try {
          // Get the Facebook\GraphNodes\GraphUser object for the current user.
          // If you provided a 'default_access_token', the '{access-token}' is optional.
          $response = $fb->get('/me', '{access-token}');
        } catch(Facebook\Exceptions\FacebookResponseException $e) {
          // When Graph returns an error
          echo 'Graph returned an error: ' . $e->getMessage();
          exit;
        } catch(Facebook\Exceptions\FacebookSDKException $e) {
          // When validation fails or other local issues
          echo 'Facebook SDK returned an error: ' . $e->getMessage();
          exit;
        }

        $me = $response->getGraphUser();
        echo 'Logged in as ' . $me->getName();
    }

kindly help me solving this problem. i will really appreciate that Thanks

  • 写回答

1条回答 默认 最新

  • dongyuan1870 2015-11-08 21:29
    关注

    Within the index function, you are not in the global scope so that as you call the class as Facebook\Facebook, PHP thinks that you are calling Facebook\Facebook declared in the App\Http\Controllers\Userapp namespace.

    Either you need to reference them as globally like below with prepending \.

    public function index()
    {
        $fb = new \Facebook\Facebook([]);
        // your code
        catch(\Facebook\Exceptions\FacebookResponseException $e)
        // your code
        catch(\Facebook\Exceptions\FacebookSDKException $e)
        // your code
    }
    

    Or use the aliases.

    use Facebook\Facebook as Facebook;
    use Facebook\Exceptions\FacebookResponseException as FacebookResponseException
    use Facebook\Exceptions\FacebookSDKException as FacebookSDKException
    
    public function index()
    {
        $fb = new Facebook([]);
        // your code
        catch(FacebookResponseException $e)
        // your code
        catch(FacebookSDKException $e)
        // your code
     }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改