Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi !
I'm trying to use the msgraph sdk in Fabric notebook, but I'm facing an SSL issue.
import asyncio
import msal
from azure.identity.aio import ClientSecretCredential
from azure.identity import DeviceCodeCredential
client_secret="AAA"
client_id = "BBB"
tenant_id = "CCC"
credential = ClientSecretCredential(tenant_id,client_id,client_secret)
scopes = ['https://graph.microsoft.com/.default']
from msgraph import GraphServiceClient
client = GraphServiceClient(credentials=credential, scopes=scopes)
async def get_user():
user = await client.users.by_user_id('myUPN').get()
if user:
print(user.display_name)
await get_user()
Solved! Go to Solution.
Thank you for your answer.
The simpliest way is to add those 3 lines :
import certifi
import os
os.environ['SSL_CERT_FILE'] = certifi.where()
Jérôme
Thank you for your answer.
The simpliest way is to add those 3 lines :
import certifi
import os
os.environ['SSL_CERT_FILE'] = certifi.where()
Jérôme
Hi @jFloury ,
Thank you for joining us on the Microsoft Fabric Community Forum.
This error happens because Python can't verify the SSL certificate for the Microsoft Graph API. Basically, it can't find a valid root certificate in your local certificate store. This issue is quite common in custom or isolated environments that don't automatically install root certificates.
If my answer addressed your query, kindly mark it as the Accepted Solution to assist others.
I'd also be grateful for a 'Kudos' if you found my response useful!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
28 | |
15 | |
7 | |
5 | |
2 |
User | Count |
---|---|
48 | |
45 | |
16 | |
7 | |
6 |