BaiduAPI::getBaiduOAuth2Service PHP Method

getBaiduOAuth2Service() public method

Get an instance of BaiduOAuth2 class.
public getBaiduOAuth2Service ( ) : BaiduOAuth2
return BaiduOAuth2
    public function getBaiduOAuth2Service()
    {
        if (!$this->oauth2) {
            $this->oauth2 = new BaiduOAuth2($this->clientId, $this->clientSecret);
            $this->oauth2->setRedirectUri($this->redirectUri);
        }
        return $this->oauth2;
    }