0

我是 google python api 客户端的新手。我正在向https://developers.google.com/api-client-library/python/start/get_started学习。我想制作一个将 python 对象转换为 JSON 数据并发送的 api到一个 servlet。

文件api.py的python代码:

import os
import urllib2
import httplib2
import json
import requests
from apiclient.discovery import build
from oauth2client.client import flow_from_clientsecrets
from oauth2client.tools import run_flow
from oauth2client.file import Storage
from oauth2client import tools

api_version='1'
_file_="D:\API"


CLIENT_SECRETS = os.path.join(os.path.dirname(_file_))

flow=flow_from_clientsecrets(CLIENT_SECRETS,
  scope=[
      'https://www.googleapis.com/auth/devstorage.full_control',
      ],


http = httplib2.Http()
auth_http = credentials.authorize(http)

service=build('SendNotif',api_version,http=http)

req = urllib2.Request('http://example/notify')
req.add_header('Content-Type', 'application/json')

data={"message":"Hello User you are notified"}
data_json = json.dumps(data)

response = urllib2.urlopen(req, json.dumps(data))

显示的错误是:

    D:\API>python api.py
    File "api.py", line 25
    auth_http = credentials.authorize(http)
        ^
    SyntaxError: invalid syntax

请帮忙纠正我..提前谢谢....

4

1 回答 1

0

您缺少此行的右括号:

flow=flow_from_clientsecrets(CLIENT_SECRETS,
于 2015-02-02T08:18:54.893 回答