我试图调试与 Google 日历 API v3 的接口。 我正以 Python 撰写我的代码, 并使用我能找到的 API 示例 。 我要确认我正向 API 发送正确的 html 字符串 。 我了解代码是如何构建字符串和插入参数的, 但我不知道实际字符串在 < code> execute () code> 命令中被发送到什么 。
是否有办法打印正在发送而不是执行的 html 字符串? 请举例说明 。
http = httplib2.Http(cache=".cache")
http = credentials.authorize(http)
service = build("moderator", "v1", http=http)
series_body = {
"description": "Share and rank tips for eating healthy and cheap!",
"name": "Eating Healthy & Cheap",
"videoSubmissionAllowed": False
}
# How Do I print the string rather than execute?
series = service.series().insert(body=series_body).execute()
print "Created a new series"