PHP Class Horde_Service_Facebook, horde
Copyright 2004-2009 Facebook. All Rights Reserved.
Copyright (c) 2007 Facebook, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
For help with this library, contact
[email protected]
显示文件
Open project: horde/horde
Public Properties
Protected Properties
Property |
Type |
Description |
|
$_http |
Horde_Http_Client |
|
|
$_logger |
Horde_Log_Logger |
Holds an optional logger object |
|
$_objCache |
|
Cache for the various objects we lazy load in __get() |
|
$_secret |
string |
The API Secret Key |
|
Public Methods
Method Details
__construct()
public method
public __construct ( string $appId, string $secret, array $context ) |
$appId |
string |
Application ID. |
$secret |
string |
Developer API secret. |
$context |
array |
Array of context information containing:
http_client - required
logger
use_ssl
|
Lazy load the facebook classes.
callGraphApi()
public method
Call the Facebook Graph API.
public callGraphApi ( string $method = '', array $params = [], array $options = [] ) : mixed |
$method |
string |
The endpoint (method) to call. |
$params |
array |
An array of parameters to pass along with the call. |
$options |
array |
Additional request options:
- request: (string) 'POST', 'GET', 'DELETE' etc.. |
return |
mixed |
The results of the API call. |
callMethod()
public method
Calls the specified normal REST API method.
getFacebookUrl()
public static method
Helper function to get the appropriate facebook url
Property Details
$_http protected_oe property
protected Horde_Http_Client $_http |
return |
Horde_Http_Client |
|
$_logger protected_oe property
Holds an optional logger object
protected Horde_Log_Logger $_logger |
return |
Horde_Log_Logger |
|
$_objCache protected_oe property
Cache for the various objects we lazy load in __get()
$_secret protected_oe property
protected string $_secret |
return |
string |
|
$useSslResources public_oe property
Use only ssl resource flag
public bool $useSslResources |
return |
boolean |
|