Hi,
im will try to explain what i want to do
i want to download attachment from my outlook mailbox, but my organization has implementing 2FA, so im trying to get a token using the msal lib to use in the microsoft graph api.
so i made this code
app = PublicClientApplication(
client_id=client_id,
authority=authority,
)
result = None
accounts = app.get_accounts()
if accounts:
result = app.acquire_token_silent(scopes, account=accounts[0])
else:
flow = app.initiate_device_flow(scopes=scopes)
print(flow['message'])
then i receive this message
To sign in, use a web browser to open the page https://microsoft.com/devicelogin and enter the code XXXXXXXX to authenticate.
to get a token im trying to do this
result = app.acquire_token_by_device_flow(flow)
if "access_token" in result:
access_token = result['access_token']
print(f'Access token: {access_token}')
else:
print(result.get("error_description") or result.get("error"))
but i get this error
AADSTS7000218: The request body must contain the following parameter: 'client_assertion' or 'client_secret'.
I don't know where I should use these parameters.
if you have any suggestions it would be very helpful, thank you for your time.