I am facing a access token issue
Closed this issue · 3 comments
I have account on microsoft dynamic 365 and i install your api module with my laravel website as per your document, but still i am facing the one error "No access token has been provided". i was uploaded cacert.pem file on server, but still showing a same error. Could you please help me, how i resolved this issue.
You provide the access token to the Graph client by calling setAccessToken
(see
That's where you should start debugging this. You either don't have a token in the cache for some reason or you're missing this line.
Hi,
This line is there but i don't know why this can't take access token. could you please let me this laravel module i used to get contacts from microsoft CRM.
Regards,
Anuj Sharma
I'm happy to help you but I really don't have enough information to begin to help. You'll need to debug this on your side to find out what's going wrong. Start by debugging what happens in the AuthController.php functions. gettoken
might be failing, or it could be that it works but the token isn't getting stored in the session correctly.