我正在从这里阅读 Mendeley 文档。我正在尝试在我的控制台中获取数据,我正在使用教程中的以下代码
from mendeley import Mendeley
# These values should match the ones supplied when registering your application.
mendeley = Mendeley(client_id, redirect_uri=redirect_uri)
auth = mendeley.start_implicit_grant_flow()
# The user needs to visit this URL, and log in to Mendeley.
login_url = auth.get_login_url()
# After logging in, the user will be redirected to a URL, auth_response.
session = auth.authenticate(auth_response)
现在我不明白auth_response
最后一行代码来自哪里?有人知道吗?谢谢