Instagram\API\Framework\Response::isOK PHP Méthode

isOK() public méthode

Check if the Response was 200 OK
public isOK ( ) : boolean
Résultat boolean
    public function isOK()
    {
        return in_array($this->getCode(), array(self::OK, self::CREATED, self::ACCEPTED));
    }