PHP Класс Instagram\API\Framework\Request

Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
$mapper JsonMapper Used for Mapping response Json to Class instances.

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

Метод Описание
__construct ( )
addCookie ( $key, $value ) Add Cookie to the Request
addFile ( $key, $file ) Add File to the Request
addHeader ( $key, $value ) Add Header to the Request
addParam ( $key, $value ) Add Parameter to the Request
clearCookies ( )
clearHeaders ( )
clearParams ( )
execute ( ) : Response Execute the Request
getCookies ( ) : array
getHeaders ( ) : array
getMethod ( ) : string
getParams ( ) : array
getUrl ( ) : string
setProxy ( $proxy ) Set Proxy to be used for Requests
setProxyCredentials ( $credentials ) Set Proxy Credentials to be used for Requests
setVerifyPeer ( $verifyPeer ) Enable/Disable SSL Verification of Peer

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

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

public __construct ( )

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

Add Cookie to the Request
public addCookie ( $key, $value )
$key string Cookie Key
$value string Cookie Value

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

Add File to the Request
public addFile ( $key, $file )
$key string File Key
$file RequestFile

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

Add Header to the Request
public addHeader ( $key, $value )
$key string Header Key
$value string Header Value

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

Add Parameter to the Request
public addParam ( $key, $value )
$key string Parameter Key
$value string Parameter Value

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

public clearCookies ( )

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

public clearHeaders ( )

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

public clearParams ( )

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

Execute the Request
public execute ( ) : Response
Результат Response The Response

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

public getCookies ( ) : array
Результат array Request Cookies

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

public getHeaders ( ) : array
Результат array Request Headers

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

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

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

public getParams ( ) : array
Результат array Request Parameters

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

abstract public getUrl ( ) : string
Результат string Request Url

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

Set Proxy to be used for Requests
public setProxy ( $proxy )
$proxy string

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

Set Proxy Credentials to be used for Requests
public setProxyCredentials ( $credentials )
$credentials string

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

Enable/Disable SSL Verification of Peer
public setVerifyPeer ( $verifyPeer )
$verifyPeer boolean

Описание свойств

$mapper публичное свойство

Used for Mapping response Json to Class instances.
public JsonMapper $mapper
Результат JsonMapper