zorn-v / nextcloud-social-login

GNU Affero General Public License v3.0
198 stars 137 forks source link

Can't find this way #469

Open newbie-ture opened 2 weeks ago

newbie-ture commented 2 weeks ago

The“Auth” method in“ProviderService” could not find the method noted below

 try {
            $adapter = new $class($config, null, $this->storage);
            $adapter->authenticate();  // Can't find this way
            $profile = $adapter->getUserProfile();
        }  catch (\Exception $e) {
zorn-v commented 2 weeks ago

Basically $class is subclass of Hybridauth\Adapter\OAuth2 (located in 3rdparty/hybridauth/hybridauth/src/Adapter/OAuth2.php) So check there

newbie-ture commented 2 weeks ago

ok,thank you