Instagram\API\Framework\Response::isOK PHP 메소드

isOK() 공개 메소드

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