blog-google-calendar icon indicating copy to clipboard operation
blog-google-calendar copied to clipboard

Google Plus no longer available

Open kzenman opened this issue 4 years ago • 1 comments

Has anyone got this working since Jan 15, 2020, if yes what did you use in replacement of Google Plus? class GoogleAccountController ---- around line 44 $account = $google->service('Plus')->people->get('me'); throws a Legacy error.

Thanks in advance!

kzenman avatar Apr 17 '20 19:04 kzenman

Use:

$account = $google->service('Oauth2')->userinfo->get();

dd($account);

williamcruzme avatar May 06 '20 20:05 williamcruzme