使用python进行谷歌日历观看请求

时间:2017-04-19 01:23:56

标签: python webhooks watch google-calendar-api

我想使用python设置Google日历的观看请求 (没有设置单独的域)。

  1. 我导入了api客户端,并且可以按照示例https://developers.google.com/google-apps/calendar/quickstart/python成功获取经过身份验证的凭据。

  2. 然后我设置了一个日历服务,我可以毫无问题地列出,插入和删除事件。

  3. 我遇到的问题是当我执行监视请求时,我在python中有一个webhook。 我收到错误: " googleapiclient.errors.HttpError:https://www.googleapis.com/calendar/v3/calendars/primary/events/watch?val = json返回" WebHook回调必须是HTTPS:" >"

    显然,我遗漏了一些需要设置的内容,以便日历对我提供的webhook感到满意。 是否可以在python中执行此操作,而无需使用https设置单独的域,如果是,如何?

    最低工作示例:

    import httplib2
    import os
    from apiclient import discovery
    from oauth2client import client
    from oauth2client import tools
    from oauth2client.file import Storage
    import uuid
    
    try:
        import argparse
        flags = argparse.ArgumentParser(parents=[tools.argparser]).parse_args()
    except ImportError:
        flags = None
    
    SCOPES = 'https://www.googleapis.com/auth/calendar'
    CLIENT_SECRET_FILE = 'client_secret.json'
    APPLICATION_NAME = 'Calendar API'
    
    
    def get_credentials():
    
        home_dir = os.path.expanduser('~')
        credential_dir = os.path.join(home_dir, '.credentials')
    
        if not os.path.exists(credential_dir):
            os.makedirs(credential_dir)
        credential_path = os.path.join(credential_dir,
                                       'calendar-api.json')
    
        store = Storage(credential_path)
        credentials = store.get()
    
        if not credentials or credentials.invalid:
            flow = client.flow_from_clientsecrets(CLIENT_SECRET_FILE, SCOPES)
            flow.user_agent = APPLICATION_NAME
            if flags:
                credentials = tools.run_flow(flow, store, flags)
            else: 
                credentials = tools.run(flow, store)
            print('Storing credentials to ' + credential_path)
        return credentials
    
    
    def main():
    
        credentials = get_credentials()
        http = credentials.authorize(httplib2.Http())
        service = discovery.build('calendar', 'v3', http=http)
    
    
    ## TESTING callback receiver: 
        eventcollect = {
            'id': str(uuid.uuid1()),
            'type': "web_hook"
        }
    
        service.events().watch(calendarId='primary', body=eventcollect).execute()
    
    
    if __name__ == '__main__':
        main()
    

1 个答案:

答案 0 :(得分:2)

watch requests的文档中,有一个Required Properties部分。在这一部分中明确指出:

  • 设置为URL的address属性字符串,用于侦听和响应此通知通道的通知。 这是您的Webhook回调网址,必须使用HTTPS

我很抱歉,但我认为没有解决方法。