IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Langage PHP Discussion :

petit soucis avec sdk php facebook


Sujet :

Langage PHP

  1. #1
    Membre à l'essai
    Inscrit en
    Juillet 2010
    Messages
    43
    Détails du profil
    Informations forums :
    Inscription : Juillet 2010
    Messages : 43
    Points : 24
    Points
    24
    Par défaut petit soucis avec sdk php facebook
    Bonjour

    j'essaie d'utiliser le SDK facebook php m'ai j'ai une erreur ligne 6

    Fatal error: Class 'Facebook' not found in /home/soshomepc/public_html/loginfb.php on line 6

    voici mon code:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
     
    <?php
    // inclut le fichier facebook.php
    require_once('src/Facebook/Facebook.php');
     
    // instanciation de l'objet facebook avec l'appId et le secret
    $oFacebook = new Facebook(array(
                                    'FACEBOOK_APP_ID' => '******************',
                                    'FACEBOOK_APP_SECRET' => '*****************************'));
     
    // on demande l'utilisateur
    // s'il est connecté, son id nous est retourné
    $user = $oFacebook->getUser();
     
    // ci celui-ci n'est pas déjà connecté, $user ne contient rien
    // on redirige alors l'utilisateur vers la page de connexion en requérant (facultativement)
    // la permission email. Toute permission se demande comme ceci 'scope' => 'permission,permission2,permission3,etc'
    if (empty($user)) {
      header('Location:'.$oFacebook->getLoginUrl(array(
                                'scope' => 'email')));
    }
     
    // si $user n'est pas vide, nous avons un user_id
    // cela correspond à un utilisateur connecté
     
    else {  
      if ($user) {
        try {
          // on fait donc une requête pour obtenir les infos de l'utilisateur
          $user_profile = $oFacebook->api('/me');
        }
     
        catch (FacebookApiException $e) {
          error_log($e);
          $user = null;
        }
      }
    }
    ?>

  2. #2
    Membre éprouvé Avatar de tdutrion
    Homme Profil pro
    Architecte technique
    Inscrit en
    Février 2009
    Messages
    561
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 35
    Localisation : France, Côte d'Or (Bourgogne)

    Informations professionnelles :
    Activité : Architecte technique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Février 2009
    Messages : 561
    Points : 1 105
    Points
    1 105
    Par défaut
    Bonjour !

    Renseigne-toi sur les namespaces. Ici le nom complet de la classe est \Facebook\Facebook, mais tu peux utiliser Facebook en ajoutant un use Facebook\Facebook; dans ton code.

  3. #3
    Membre à l'essai
    Inscrit en
    Juillet 2010
    Messages
    43
    Détails du profil
    Informations forums :
    Inscription : Juillet 2010
    Messages : 43
    Points : 24
    Points
    24
    Par défaut
    J'ai modifié comme cela:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
     
    <?php
    // inclut le fichier facebook.php
    require_once('Facebook.php');
     
    use Facebook\Facebook;
     
     
     
    $oFacebook = new Facebook([
      'app_id' => 'xxx', // Replace {app-id} with your app id
      'app_secret' => 'xxx',
      'default_graph_version' => 'v2.2',
      ]);
     
     
    $helper = $fb->getRedirectLoginHelper();
     
    $permissions = ['email']; // Optional permissions
    $loginUrl = $helper->getLoginUrl('http://www.sos-home-pc.fr/callback.php', $permissions);
     
    echo '<a href="' . htmlspecialchars($loginUrl) . '">Log in with Facebook!</a>';
    ?>
    La je n'ai plus l'erreur que j'avais indiqué mais j'en ai une plus loin dans mon fichier Facebook.php

    Fatal error: Class 'Facebook\FacebookApp' not found in /home/soshomepc/public_html/Facebook.php on line 146

    cela correspond à cette ligne:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    $this->app = new FacebookApp($config['app_id'], $config['app_secret']);
    pourtant le fichier Facebook.php n'as pas été modifié le voici en dessous:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
     
    <?php
    /**
     * Copyright 2017 Facebook, Inc.
     *
     * You are hereby granted a non-exclusive, worldwide, royalty-free license to
     * use, copy, modify, and distribute this software in source code or binary
     * form for use in connection with the web services and APIs provided by
     * Facebook.
     *
     * As with any software that integrates with the Facebook platform, your use
     * of this software is subject to the Facebook Developer Principles and
     * Policies [http://developers.facebook.com/policy/]. This copyright notice
     * shall be included in all copies or substantial portions of the software.
     *
     * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
     * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
     * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
     * DEALINGS IN THE SOFTWARE.
     *
     */
     
    namespace Facebook;
     
    use Facebook\Authentication\AccessToken;
    use Facebook\Authentication\OAuth2Client;
    use Facebook\FileUpload\FacebookFile;
    use Facebook\FileUpload\FacebookResumableUploader;
    use Facebook\FileUpload\FacebookTransferChunk;
    use Facebook\FileUpload\FacebookVideo;
    use Facebook\GraphNodes\GraphEdge;
    use Facebook\Url\UrlDetectionInterface;
    use Facebook\Url\FacebookUrlDetectionHandler;
    use Facebook\PseudoRandomString\PseudoRandomStringGeneratorFactory;
    use Facebook\PseudoRandomString\PseudoRandomStringGeneratorInterface;
    use Facebook\HttpClients\HttpClientsFactory;
    use Facebook\PersistentData\PersistentDataFactory;
    use Facebook\PersistentData\PersistentDataInterface;
    use Facebook\Helpers\FacebookCanvasHelper;
    use Facebook\Helpers\FacebookJavaScriptHelper;
    use Facebook\Helpers\FacebookPageTabHelper;
    use Facebook\Helpers\FacebookRedirectLoginHelper;
    use Facebook\Exceptions\FacebookSDKException;
     
    /**
     * Class Facebook
     *
     * @package Facebook
     */
    class Facebook
    {
        /**
         * @const string Version number of the Facebook PHP SDK.
         */
        const VERSION = '5.6.1';
     
        /**
         * @const string Default Graph API version for requests.
         */
        const DEFAULT_GRAPH_VERSION = 'v2.10';
     
        /**
         * @const string The name of the environment variable that contains the app ID.
         */
        const APP_ID_ENV_NAME = 'FACEBOOK_APP_ID';
     
        /**
         * @const string The name of the environment variable that contains the app secret.
         */
        const APP_SECRET_ENV_NAME = 'FACEBOOK_APP_SECRET';
     
        /**
         * @var FacebookApp The FacebookApp entity.
         */
        protected $app;
     
        /**
         * @var FacebookClient The Facebook client service.
         */
        protected $client;
     
        /**
         * @var OAuth2Client The OAuth 2.0 client service.
         */
        protected $oAuth2Client;
     
        /**
         * @var UrlDetectionInterface|null The URL detection handler.
         */
        protected $urlDetectionHandler;
     
        /**
         * @var PseudoRandomStringGeneratorInterface|null The cryptographically secure pseudo-random string generator.
         */
        protected $pseudoRandomStringGenerator;
     
        /**
         * @var AccessToken|null The default access token to use with requests.
         */
        protected $defaultAccessToken;
     
        /**
         * @var string|null The default Graph version we want to use.
         */
        protected $defaultGraphVersion;
     
        /**
         * @var PersistentDataInterface|null The persistent data handler.
         */
        protected $persistentDataHandler;
     
        /**
         * @var FacebookResponse|FacebookBatchResponse|null Stores the last request made to Graph.
         */
        protected $lastResponse;
     
        /**
         * Instantiates a new Facebook super-class object.
         *
         * @param array $config
         *
         * @throws FacebookSDKException
         */
        public function __construct(array $config = [])
        {
            $config = array_merge([
                'app_id' => getenv(static::APP_ID_ENV_NAME),
                'app_secret' => getenv(static::APP_SECRET_ENV_NAME),
                'default_graph_version' => static::DEFAULT_GRAPH_VERSION,
                'enable_beta_mode' => false,
                'http_client_handler' => null,
                'persistent_data_handler' => null,
                'pseudo_random_string_generator' => null,
                'url_detection_handler' => null,
            ], $config);
     
            if (!$config['app_id']) {
                throw new FacebookSDKException('Required "app_id" key not supplied in config and could not find fallback environment variable "' . static::APP_ID_ENV_NAME . '"');
            }
            if (!$config['app_secret']) {
                throw new FacebookSDKException('Required "app_secret" key not supplied in config and could not find fallback environment variable "' . static::APP_SECRET_ENV_NAME . '"');
            }
     
            $this->app = new FacebookApp($config['app_id'], $config['app_secret']);
            $this->client = new FacebookClient(
                HttpClientsFactory::createHttpClient($config['http_client_handler']),
                $config['enable_beta_mode']
            );
            $this->pseudoRandomStringGenerator = PseudoRandomStringGeneratorFactory::createPseudoRandomStringGenerator(
                $config['pseudo_random_string_generator']
            );
            $this->setUrlDetectionHandler($config['url_detection_handler'] ?: new FacebookUrlDetectionHandler());
            $this->persistentDataHandler = PersistentDataFactory::createPersistentDataHandler(
                $config['persistent_data_handler']
            );
     
            if (isset($config['default_access_token'])) {
                $this->setDefaultAccessToken($config['default_access_token']);
            }
     
            // @todo v6: Throw an InvalidArgumentException if "default_graph_version" is not set
            $this->defaultGraphVersion = $config['default_graph_version'];
        }
     
        /**
         * Returns the FacebookApp entity.
         *
         * @return FacebookApp
         */
        public function getApp()
        {
            return $this->app;
        }
     
        /**
         * Returns the FacebookClient service.
         *
         * @return FacebookClient
         */
        public function getClient()
        {
            return $this->client;
        }
     
        /**
         * Returns the OAuth 2.0 client service.
         *
         * @return OAuth2Client
         */
        public function getOAuth2Client()
        {
            if (!$this->oAuth2Client instanceof OAuth2Client) {
                $app = $this->getApp();
                $client = $this->getClient();
                $this->oAuth2Client = new OAuth2Client($app, $client, $this->defaultGraphVersion);
            }
     
            return $this->oAuth2Client;
        }
     
        /**
         * Returns the last response returned from Graph.
         *
         * @return FacebookResponse|FacebookBatchResponse|null
         */
        public function getLastResponse()
        {
            return $this->lastResponse;
        }
     
        /**
         * Returns the URL detection handler.
         *
         * @return UrlDetectionInterface
         */
        public function getUrlDetectionHandler()
        {
            return $this->urlDetectionHandler;
        }
     
        /**
         * Changes the URL detection handler.
         *
         * @param UrlDetectionInterface $urlDetectionHandler
         */
        private function setUrlDetectionHandler(UrlDetectionInterface $urlDetectionHandler)
        {
            $this->urlDetectionHandler = $urlDetectionHandler;
        }
     
        /**
         * Returns the default AccessToken entity.
         *
         * @return AccessToken|null
         */
        public function getDefaultAccessToken()
        {
            return $this->defaultAccessToken;
        }
     
        /**
         * Sets the default access token to use with requests.
         *
         * @param AccessToken|string $accessToken The access token to save.
         *
         * @throws \InvalidArgumentException
         */
        public function setDefaultAccessToken($accessToken)
        {
            if (is_string($accessToken)) {
                $this->defaultAccessToken = new AccessToken($accessToken);
     
                return;
            }
     
            if ($accessToken instanceof AccessToken) {
                $this->defaultAccessToken = $accessToken;
     
                return;
            }
     
            throw new \InvalidArgumentException('The default access token must be of type "string" or Facebook\AccessToken');
        }
     
        /**
         * Returns the default Graph version.
         *
         * @return string
         */
        public function getDefaultGraphVersion()
        {
            return $this->defaultGraphVersion;
        }
     
        /**
         * Returns the redirect login helper.
         *
         * @return FacebookRedirectLoginHelper
         */
        public function getRedirectLoginHelper()
        {
            return new FacebookRedirectLoginHelper(
                $this->getOAuth2Client(),
                $this->persistentDataHandler,
                $this->urlDetectionHandler,
                $this->pseudoRandomStringGenerator
            );
        }
     
        /**
         * Returns the JavaScript helper.
         *
         * @return FacebookJavaScriptHelper
         */
        public function getJavaScriptHelper()
        {
            return new FacebookJavaScriptHelper($this->app, $this->client, $this->defaultGraphVersion);
        }
     
        /**
         * Returns the canvas helper.
         *
         * @return FacebookCanvasHelper
         */
        public function getCanvasHelper()
        {
            return new FacebookCanvasHelper($this->app, $this->client, $this->defaultGraphVersion);
        }
     
        /**
         * Returns the page tab helper.
         *
         * @return FacebookPageTabHelper
         */
        public function getPageTabHelper()
        {
            return new FacebookPageTabHelper($this->app, $this->client, $this->defaultGraphVersion);
        }
     
        /**
         * Sends a GET request to Graph and returns the result.
         *
         * @param string                  $endpoint
         * @param AccessToken|string|null $accessToken
         * @param string|null             $eTag
         * @param string|null             $graphVersion
         *
         * @return FacebookResponse
         *
         * @throws FacebookSDKException
         */
        public function get($endpoint, $accessToken = null, $eTag = null, $graphVersion = null)
        {
            return $this->sendRequest(
                'GET',
                $endpoint,
                $params = [],
                $accessToken,
                $eTag,
                $graphVersion
            );
        }
     
        /**
         * Sends a POST request to Graph and returns the result.
         *
         * @param string                  $endpoint
         * @param array                   $params
         * @param AccessToken|string|null $accessToken
         * @param string|null             $eTag
         * @param string|null             $graphVersion
         *
         * @return FacebookResponse
         *
         * @throws FacebookSDKException
         */
        public function post($endpoint, array $params = [], $accessToken = null, $eTag = null, $graphVersion = null)
        {
            return $this->sendRequest(
                'POST',
                $endpoint,
                $params,
                $accessToken,
                $eTag,
                $graphVersion
            );
        }
     
        /**
         * Sends a DELETE request to Graph and returns the result.
         *
         * @param string                  $endpoint
         * @param array                   $params
         * @param AccessToken|string|null $accessToken
         * @param string|null             $eTag
         * @param string|null             $graphVersion
         *
         * @return FacebookResponse
         *
         * @throws FacebookSDKException
         */
        public function delete($endpoint, array $params = [], $accessToken = null, $eTag = null, $graphVersion = null)
        {
            return $this->sendRequest(
                'DELETE',
                $endpoint,
                $params,
                $accessToken,
                $eTag,
                $graphVersion
            );
        }
     
        /**
         * Sends a request to Graph for the next page of results.
         *
         * @param GraphEdge $graphEdge The GraphEdge to paginate over.
         *
         * @return GraphEdge|null
         *
         * @throws FacebookSDKException
         */
        public function next(GraphEdge $graphEdge)
        {
            return $this->getPaginationResults($graphEdge, 'next');
        }
     
        /**
         * Sends a request to Graph for the previous page of results.
         *
         * @param GraphEdge $graphEdge The GraphEdge to paginate over.
         *
         * @return GraphEdge|null
         *
         * @throws FacebookSDKException
         */
        public function previous(GraphEdge $graphEdge)
        {
            return $this->getPaginationResults($graphEdge, 'previous');
        }
     
        /**
         * Sends a request to Graph for the next page of results.
         *
         * @param GraphEdge $graphEdge The GraphEdge to paginate over.
         * @param string    $direction The direction of the pagination: next|previous.
         *
         * @return GraphEdge|null
         *
         * @throws FacebookSDKException
         */
        public function getPaginationResults(GraphEdge $graphEdge, $direction)
        {
            $paginationRequest = $graphEdge->getPaginationRequest($direction);
            if (!$paginationRequest) {
                return null;
            }
     
            $this->lastResponse = $this->client->sendRequest($paginationRequest);
     
            // Keep the same GraphNode subclass
            $subClassName = $graphEdge->getSubClassName();
            $graphEdge = $this->lastResponse->getGraphEdge($subClassName, false);
     
            return count($graphEdge) > 0 ? $graphEdge : null;
        }
     
        /**
         * Sends a request to Graph and returns the result.
         *
         * @param string                  $method
         * @param string                  $endpoint
         * @param array                   $params
         * @param AccessToken|string|null $accessToken
         * @param string|null             $eTag
         * @param string|null             $graphVersion
         *
         * @return FacebookResponse
         *
         * @throws FacebookSDKException
         */
        public function sendRequest($method, $endpoint, array $params = [], $accessToken = null, $eTag = null, $graphVersion = null)
        {
            $accessToken = $accessToken ?: $this->defaultAccessToken;
            $graphVersion = $graphVersion ?: $this->defaultGraphVersion;
            $request = $this->request($method, $endpoint, $params, $accessToken, $eTag, $graphVersion);
     
            return $this->lastResponse = $this->client->sendRequest($request);
        }
     
        /**
         * Sends a batched request to Graph and returns the result.
         *
         * @param array                   $requests
         * @param AccessToken|string|null $accessToken
         * @param string|null             $graphVersion
         *
         * @return FacebookBatchResponse
         *
         * @throws FacebookSDKException
         */
        public function sendBatchRequest(array $requests, $accessToken = null, $graphVersion = null)
        {
            $accessToken = $accessToken ?: $this->defaultAccessToken;
            $graphVersion = $graphVersion ?: $this->defaultGraphVersion;
            $batchRequest = new FacebookBatchRequest(
                $this->app,
                $requests,
                $accessToken,
                $graphVersion
            );
     
            return $this->lastResponse = $this->client->sendBatchRequest($batchRequest);
        }
     
        /**
         * Instantiates an empty FacebookBatchRequest entity.
         *
         * @param  AccessToken|string|null $accessToken  The top-level access token. Requests with no access token
         *                                               will fallback to this.
         * @param  string|null             $graphVersion The Graph API version to use.
         * @return FacebookBatchRequest
         */
        public function newBatchRequest($accessToken = null, $graphVersion = null)
        {
            $accessToken = $accessToken ?: $this->defaultAccessToken;
            $graphVersion = $graphVersion ?: $this->defaultGraphVersion;
     
            return new FacebookBatchRequest(
                $this->app,
                [],
                $accessToken,
                $graphVersion
            );
        }
     
        /**
         * Instantiates a new FacebookRequest entity.
         *
         * @param string                  $method
         * @param string                  $endpoint
         * @param array                   $params
         * @param AccessToken|string|null $accessToken
         * @param string|null             $eTag
         * @param string|null             $graphVersion
         *
         * @return FacebookRequest
         *
         * @throws FacebookSDKException
         */
        public function request($method, $endpoint, array $params = [], $accessToken = null, $eTag = null, $graphVersion = null)
        {
            $accessToken = $accessToken ?: $this->defaultAccessToken;
            $graphVersion = $graphVersion ?: $this->defaultGraphVersion;
     
            return new FacebookRequest(
                $this->app,
                $accessToken,
                $method,
                $endpoint,
                $params,
                $eTag,
                $graphVersion
            );
        }
     
        /**
         * Factory to create FacebookFile's.
         *
         * @param string $pathToFile
         *
         * @return FacebookFile
         *
         * @throws FacebookSDKException
         */
        public function fileToUpload($pathToFile)
        {
            return new FacebookFile($pathToFile);
        }
     
        /**
         * Factory to create FacebookVideo's.
         *
         * @param string $pathToFile
         *
         * @return FacebookVideo
         *
         * @throws FacebookSDKException
         */
        public function videoToUpload($pathToFile)
        {
            return new FacebookVideo($pathToFile);
        }
     
        /**
         * Upload a video in chunks.
         *
         * @param int $target The id of the target node before the /videos edge.
         * @param string $pathToFile The full path to the file.
         * @param array $metadata The metadata associated with the video file.
         * @param string|null $accessToken The access token.
         * @param int $maxTransferTries The max times to retry a failed upload chunk.
         * @param string|null $graphVersion The Graph API version to use.
         *
         * @return array
         *
         * @throws FacebookSDKException
         */
        public function uploadVideo($target, $pathToFile, $metadata = [], $accessToken = null, $maxTransferTries = 5, $graphVersion = null)
        {
            $accessToken = $accessToken ?: $this->defaultAccessToken;
            $graphVersion = $graphVersion ?: $this->defaultGraphVersion;
     
            $uploader = new FacebookResumableUploader($this->app, $this->client, $accessToken, $graphVersion);
            $endpoint = '/'.$target.'/videos';
            $file = $this->videoToUpload($pathToFile);
            $chunk = $uploader->start($endpoint, $file);
     
            do {
                $chunk = $this->maxTriesTransfer($uploader, $endpoint, $chunk, $maxTransferTries);
            } while (!$chunk->isLastChunk());
     
            return [
              'video_id' => $chunk->getVideoId(),
              'success' => $uploader->finish($endpoint, $chunk->getUploadSessionId(), $metadata),
            ];
        }
     
        /**
         * Attempts to upload a chunk of a file in $retryCountdown tries.
         *
         * @param FacebookResumableUploader $uploader
         * @param string $endpoint
         * @param FacebookTransferChunk $chunk
         * @param int $retryCountdown
         *
         * @return FacebookTransferChunk
         *
         * @throws FacebookSDKException
         */
        private function maxTriesTransfer(FacebookResumableUploader $uploader, $endpoint, FacebookTransferChunk $chunk, $retryCountdown)
        {
            $newChunk = $uploader->transfer($endpoint, $chunk, $retryCountdown < 1);
     
            if ($newChunk !== $chunk) {
                return $newChunk;
            }
     
            $retryCountdown--;
     
            // If transfer() returned the same chunk entity, the transfer failed but is resumable.
            return $this->maxTriesTransfer($uploader, $endpoint, $chunk, $retryCountdown);
        }
    }

  4. #4
    Membre éprouvé Avatar de tdutrion
    Homme Profil pro
    Architecte technique
    Inscrit en
    Février 2009
    Messages
    561
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 35
    Localisation : France, Côte d'Or (Bourgogne)

    Informations professionnelles :
    Activité : Architecte technique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Février 2009
    Messages : 561
    Points : 1 105
    Points
    1 105
    Par défaut
    Il faut trouver la classe Facebook\FacebookApp et l'ajouter...

    Mais tu devrais plutôt utiliser composer pour ça !

  5. #5
    Membre à l'essai
    Inscrit en
    Juillet 2010
    Messages
    43
    Détails du profil
    Informations forums :
    Inscription : Juillet 2010
    Messages : 43
    Points : 24
    Points
    24
    Par défaut
    Citation Envoyé par Théocrite Voir le message
    Mais tu devrais plutôt utiliser composer pour ça !
    comment ça?

    j'ai tout essayé par contre en utilisant autoload.php j'ai pas ses erreurs

    mais il me semble que avec autoload je suis plus limité

    Il faudrais aussi que je puisse récupérer l'adresse de la personne mais je ne pense pas que cela soit possible à moins que?

  6. #6
    Membre à l'essai
    Inscrit en
    Juillet 2010
    Messages
    43
    Détails du profil
    Informations forums :
    Inscription : Juillet 2010
    Messages : 43
    Points : 24
    Points
    24
    Par défaut
    j'ai décidé de créer mon propre script

    et là je rencontre juste un petit soucis c'est que la variable "getFirstName" reste vide voici mon code

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
     
     <?php
     
        use Facebook\FacebookSession;
        use Facebook\FacebookRedirectLoginHelper;
        use Facebook\FacebookRequest;
     
        require 'vendor/autoload.php';
     
        session_start();
     
        $appId = 'xxx';
        $appSecret = 'xxx';
     
        FacebookSession::SetDefaultApplication($appId, $appSecret);
        $helper = new \Facebook\FacebookRedirectLoginHelper('http://sos-home-pc.loc/index.php');
        if (isset($_SESSION) && isset($_SESSION['fb_token'])){
            $session = new FacebookSession($_SESSION['fb_token']);
        }
        else{
            $session = $helper->getSessionFromRedirect();
        }
        if ($session){
            $_SESSION['fb_token'] = $session->getToken();
     
            $request = new FacebookRequest($session, 'GET', '/me');
            $profil = $request->execute()->getGraphObject('Facebook\GraphUser');
            var_dump($profil->getFirstName());
        }
        else{
            echo '<a href="'.$helper->getLoginUrl().'">Se connecter avec Facebook</a>';
                }
     
        ?>
    les seules données que j'arrive à récupérer ce sont:

    getId
    getName

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [PHP 5.2] [PHP-JS] petit souci avec une boucle simple
    Par gtraxx dans le forum Langage
    Réponses: 2
    Dernier message: 05/02/2009, 15h26
  2. [POO] [objet php 5] petit soucis avec $this
    Par estacado dans le forum Langage
    Réponses: 4
    Dernier message: 22/09/2006, 10h51
  3. Petit souci avec clause where
    Par ybruant dans le forum SQL
    Réponses: 1
    Dernier message: 21/07/2005, 22h10
  4. petit souci avec des variables avec des fonctions psql
    Par dust62 dans le forum PostgreSQL
    Réponses: 4
    Dernier message: 02/04/2005, 13h45
  5. [DEBUTANT] petits soucis avec un prgm de chat
    Par LechucK dans le forum MFC
    Réponses: 8
    Dernier message: 19/01/2004, 16h52

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo