PHP Класс Gajus\Fuss\Request

Показать файл Открыть проект

Открытые методы

Метод Описание
__construct ( Gajus\Fuss\Session $session, string $method, string $path, array $query = null )
getMethod ( ) : string
getUrl ( ) : string Get URL that will be used to make the request, including the access token and appsecret_proof.
make ( ) : array
setBody ( array $body ) : null

Приватные методы

Метод Описание
getAppSecretProof ( ) appsecret_proof is used as an additional layer of authentication when making Graph API calls to proof that the access_token has not been stolen.
isPathVersioned ( ) : boolean True if user provided path explicitly names Graph API endpoint version, e.g. /v2.1/me.
setMethod ( string $method ) : null
setPath ( string $path ) : null
setQuery ( array $query ) : null

Описание методов

__construct() публичный Метод

public __construct ( Gajus\Fuss\Session $session, string $method, string $path, array $query = null )
$session Gajus\Fuss\Session
$method string GET|POST|DELETE
$path string Path relative to the Graph API.
$query array GET parameters.

getMethod() публичный Метод

public getMethod ( ) : string
Результат string

getUrl() публичный Метод

Get URL that will be used to make the request, including the access token and appsecret_proof.
public getUrl ( ) : string
Результат string

make() публичный Метод

public make ( ) : array
Результат array Graph API response.

setBody() публичный Метод

public setBody ( array $body ) : null
$body array
Результат null