Instagram\API\Framework\Response::isOK PHP Method

isOK() public method

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