私はGmail APIの作業を開始したばかりで、Oauth2.0チュートリアルに従い、autherisationコードを取得しました。私のコードは、これまでのところです:python 3.x - Gmail APIのタイトルと送信者を取得
from oauth2client import client
import webbrowser
import httplib2
flow = client.flow_from_clientsecrets(
'client_secrets.json',
scope='https://www.googleapis.com/auth/gmail.readonly',
redirect_uri='urn:ietf:wg:oauth:2.0:oob')
auth_uri = flow.step1_get_authorize_url()
webbrowser.open_new(auth_uri)
authcode = input("Enter auth code: ")
credentials = flow.step2_exchange(authcode)
http_auth = credentials.authorize(httplib2.Http())
私はフォーマットのこの種の最新の未読メッセージの件名と送信者を取得要求することによって、APIをテストしたいと思います:述べたように
#pseudocode
get latestMessage
if latestMessage.read == True:
print("you have no unread messages)
else:
print("you have a new email: " + latestMessage.subject + " from" + latestmessage.sender)
ありがとうございました。あなたの答えは正しい方向に私を押してくれました。私はあなたが[ここ](https://developers.google.com/gmail/api/v1/reference/ユーザー/メッセージ/取得)代わりに –