PHP code example of moathdev / office365-laravel
1. Go to this page and download the library: Download moathdev/office365-laravel library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
moathdev / office365-laravel example snippets
`
php artisan vendor:publish --provider="Moathdev\Office365\ServiceProvider"
`
namespace App\Http\Controllers;
use Moathdev\Office365\Facade\Office365;
class AuthController extends Controller
{
public function signin()
{
$link = Office365::login();
return redirect($link);
}
public function redirect()
{
if (!request()->has('code')) {
abort(500);
}
$code = Office365::getAccessToken(request()->get('code'));
$user = Office365::getUserInfo($code['token']);
$messages = Office365::getEmails($code['token']);
dd($user, $messages);
}
}