我似乎无法在下面的代码中设置token
。有人知道我在这里想念的吗? https://pypi.org/project/microsoftgraph-python/#description
Python代码:
from microsoftgraph.client import Client
client = Client('client_id', 'client_pass', account_type='by defect common', office365=True)
token = client.set_token(token)
me = client.get_me()
events = client.get_me_events()
print(events)
print(me)
结果:
token = client.set_token(token)
NameError: name 'token' is not defined
答案 0 :(得分:0)
token = client.set_token(token)
首先评估作业的右侧。 token
没有在代码中的其他任何地方定义,因此它是未定义的名称。