NameError:未定义名称“令牌” microsoftgraph.client

时间:2019-02-28 16:40:42

标签: python microsoft-graph

我似乎无法在下面的代码中设置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

1 个答案:

答案 0 :(得分:0)

token = client.set_token(token)

首先评估作业的右侧。 token没有在代码中的其他任何地方定义,因此它是未定义的名称。