这是我用来发送用户代码请求以显示他的电子邮件的一些代码
如果我的范围是:“电子邮件配置文件”它可以工作,但我需要访问用户的电子邮件
我读到这个范围是“http://www.googleapis.com/auth/gmail.modify”,但插入它不起作用
我如何编写工作范围
client_id = 'randomtextcorrectimsure.apps.googleusercontent.com'
client_secret = "alsocorrect"
data = [
('client_id', client_id),
('scope', 'http://www.googleapis.com/auth/gmail.modify'),
]
r = requests.post('https://accounts.google.com/o/oauth2/device/code', data=data)
print (r.json())