Google API access using Service Account oauth2client.client.CryptoUnavailableError: No crypto library available

后端 未结 5 1603
夕颜
夕颜 2020-12-10 02:55

I am trying to create a service account app so that I can access Google Analytics api using Python. Two things are confusing me. First, when I use the following code:

5条回答
  •  离开以前
    2020-12-10 03:57

    Even if you are installed pycrypto & python-ssl libraries in your development environment, You need to add this pycrypto library in your application's app.yaml file.

    libraries:
    - name: pycrypto
      version: "latest"
    

提交回复
热议问题