laravel-microsoft-graph icon indicating copy to clipboard operation
laravel-microsoft-graph copied to clipboard

Get users email without auth

Open RabieAli95 opened this issue 3 years ago • 0 comments

Hi, I'm trying to get my personal emails by your pkg, this is my code:

in .env :

MSGRAPH_CLIENT_ID=01306e60-4f2d-425cxxxxxxxxxx  // Application (client) ID from 'aad.portal.azure.com'
MSGRAPH_SECRET_ID=f3cb7221-4a86-468cxxxxxxxxxxx // Object ID  from 'aad.portal.azure.com'
MSGRAPH_TENANT_ID=9597912b-442e-4ce3xxxxxxxxxx // Directory (tenant) ID from 'aad.portal.azure.com'
Route::get('/', function () {
    $emails = MsGraph::getEmails();
    dd($emails);
});

I got error

Object of class Illuminate\Routing\Redirector could not be converted to string

RabieAli95 avatar Sep 21 '22 17:09 RabieAli95