Apple_Actions\API_Action::fetch_credentials PHP 메소드

fetch_credentials() 개인적인 메소드

Fetch the current API credentials.
private fetch_credentials ( ) : Apple_Push_API\Credentials
리턴 Apple_Push_API\Credentials
    private function fetch_credentials()
    {
        $key = $this->get_setting('api_key');
        $secret = $this->get_setting('api_secret');
        return new Credentials($key, $secret);
    }