Calling a Cloud Function from another Cloud Function

前端 未结 4 2204
时光取名叫无心
时光取名叫无心 2020-11-27 18:58

I am using a Cloud Function to call another Cloud Function on the free spark tier.

Is there a special way to call another Cloud Function? Or do you just use a standa

4条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-27 19:25

    Despite of the question tag and other answers concern the javascript I want to share the python example as it reflects the title and also authentification aspect mentioned in the question.

    Google Cloud Function provide REST API interface what incluse call method that can be used in another Cloud Function. Although the documentation mention using Google-provided client libraries there is still non one for Cloud Function on Python.

    And instead you need to use general Google API Client Libraries. [This is the python one].3

    Probably, the main difficulties while using this approach is an understanding of authentification process. Generally you need provide two things to build a client service: credentials ans scopes.

    The simpliest way to get credentials is relay on Application Default Credentials (ADC) library. The rigth documentation about that are:

    1. https://cloud.google.com/docs/authentication/production
    2. https://github.com/googleapis/google-api-python-client/blob/master/docs/auth.md

    The place where to get scopes is the each REST API function documentation page. Like, OAuth scope: https://www.googleapis.com/auth/cloud-platform

    The complete code example of calling 'hello-world' clound fucntion is below. Before run:

    1. Create default Cloud Function on GCP in your project.
    • Keep and notice the default service account to use
    • Keep the default body.
    1. Notice the project_id, function name, location where you deploy function.
    2. If you will call function outside Cloud Function environment (locally for instance) setup the environment variable GOOGLE_APPLICATION_CREDENTIALS according the doc mentioned above
    3. If you will call actualy from another Cloud Function you don't need to configure credentials at all.
    from googleapiclient.discovery import build
    from googleapiclient.discovery_cache.base import Cache
    import google.auth
    
    import pprint as pp
    
    def get_cloud_function_api_service():
        class MemoryCache(Cache):
            _CACHE = {}
    
            def get(self, url):
                return MemoryCache._CACHE.get(url)
    
            def set(self, url, content):
                MemoryCache._CACHE[url] = content
    
        scopes = ['https://www.googleapis.com/auth/cloud-platform']
    
        # If the environment variable GOOGLE_APPLICATION_CREDENTIALS is set,
        # ADC uses the service account file that the variable points to.
        #
        # If the environment variable GOOGLE_APPLICATION_CREDENTIALS isn't set,
        # ADC uses the default service account that Compute Engine, Google Kubernetes Engine, App Engine, Cloud Run,
        # and Cloud Functions provide
        #
        # see more on https://cloud.google.com/docs/authentication/production
        credentials, project_id = google.auth.default(scopes)
    
        service = build('cloudfunctions', 'v1', credentials=credentials, cache=MemoryCache())
        return service
    
    
    google_api_service = get_cloud_function_api_service()
    name = 'projects/{project_id}/locations/us-central1/functions/function-1'
    body = {
        'data': '{ "message": "It is awesome, you are develop on Stack Overflow language!"}' # json passed as a string
    }
    result_call = google_api_service.projects().locations().functions().call(name=name, body=body).execute()
    pp.pprint(result_call)
    # expected out out is:
    # {'executionId': '3h4c8cb1kwe2', 'result': 'It is awesome, you are develop on Stack Overflow language!'}
    
    

提交回复
热议问题