PHP code example of spaanproductions / office365-laravel
1. Go to this page and download the library: Download spaanproductions/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/ */
spaanproductions / office365-laravel example snippets
`
php artisan vendor:publish --provider="SpaanProductions\Office365\Office365ServiceProvider"
`
namespace App\Http\Controllers;
use SpaanProductions\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);
}
}