从 Django 视图调用 Google 云函数
Invoking a Google Cloud Function from a Django View
我已经创建了一个可以通过 HTTP 调用的 Google 云函数。对该功能的访问仅限于服务帐户。
如果我有一个 Django 视图应该调用此函数并期待响应?
这是我试过的方法
1) 在启动Django之前我设置了环境变量
export GOOGLE_APPLICATION_CREDENTIALS
2) 我尝试使用独立代码调用该函数,但很快意识到这无济于事,因为我想不出这之后的下一步。
from google.oauth2 import service_account
from apiclient.http import call
SCOPES = ['https://www.googleapis.com/auth/cloud-platform']
SERVICE_ACCOUNT_FILE = 'credentials/credentials.json'
credentials = service_account.Credentials.from_service_account_file(
SERVICE_ACCOUNT_FILE, scopes=SCOPES)
Google 的文档确实为您提供了有关 API 的文档,但是没有关于如何调用方法或在 Python 代码中导入什么的示例代码,并且调用这些方法的方法是什么。
如何通过服务帐户向 Cloud Functions 发送带有 JSON 数据的 POST 请求?
**编辑
几个小时后,我做了更多的挖掘,并部分地解决了这个问题
from google.oauth2 import service_account
import googleapiclient.discovery
import json
SCOPES = ['https://www.googleapis.com/auth/cloud-platform']
SERVICE_ACCOUNT_FILE = 'credentials/credentials.json'
credentials = service_account.Credentials.from_service_account_file(
SERVICE_ACCOUNT_FILE, scopes=SCOPES)
cloudfunction = googleapiclient.discovery.build('cloudfunctions', 'v1', credentials=credentials)
#projects/{project_id}/locations/{location_id}/functions/{function_id}.
path='some project path'
data='some data in json that works when invoked through the console'
data=json.dumps(data)
a=cloudfunction.projects().locations().functions().call(name=path, body=data).execute()
我现在又遇到一个错误。
Details: "[{'@type': 'type.googleapis.com/google.rpc.BadRequest', 'fieldViolations': [{'description': 'Invalid JSON payload received. Unknown name "": Root element must be a message.'}]}]">
我找不到这方面的任何文档。 JSON应该怎么组成?
让 json 像 {"message":{my actual payload}}
是行不通的。
可以找到请求的文档 here。
请求正文参数应该是具有以下形式的对象:
{ # Request for the `CallFunction` method.
"data": "A String", # Input to be passed to the function.
}
对您的代码进行以下修改应该可以正常工作:
from google.oauth2 import service_account
import googleapiclient.discovery
SCOPES = ['https://www.googleapis.com/auth/cloud-platform']
SERVICE_ACCOUNT_FILE = 'credentials/credentials.json'
credentials = service_account.Credentials.from_service_account_file(
SERVICE_ACCOUNT_FILE, scopes=SCOPES)
cloudfunction = googleapiclient.discovery.build('cloudfunctions', 'v1', credentials=credentials)
path ="projects/your-project-name/locations/cloud-function-location/functions/name-of-cloud-function"
data = {"data": "A String"}
a=cloudfunction.projects().locations().functions().call(name=path, body=data).execute()
请注意,允许的流量非常有限,因为有 limits 个 API 调用。
我已经创建了一个可以通过 HTTP 调用的 Google 云函数。对该功能的访问仅限于服务帐户。
如果我有一个 Django 视图应该调用此函数并期待响应?
这是我试过的方法
1) 在启动Django之前我设置了环境变量
export GOOGLE_APPLICATION_CREDENTIALS
2) 我尝试使用独立代码调用该函数,但很快意识到这无济于事,因为我想不出这之后的下一步。
from google.oauth2 import service_account
from apiclient.http import call
SCOPES = ['https://www.googleapis.com/auth/cloud-platform']
SERVICE_ACCOUNT_FILE = 'credentials/credentials.json'
credentials = service_account.Credentials.from_service_account_file(
SERVICE_ACCOUNT_FILE, scopes=SCOPES)
Google 的文档确实为您提供了有关 API 的文档,但是没有关于如何调用方法或在 Python 代码中导入什么的示例代码,并且调用这些方法的方法是什么。
如何通过服务帐户向 Cloud Functions 发送带有 JSON 数据的 POST 请求?
**编辑 几个小时后,我做了更多的挖掘,并部分地解决了这个问题
from google.oauth2 import service_account
import googleapiclient.discovery
import json
SCOPES = ['https://www.googleapis.com/auth/cloud-platform']
SERVICE_ACCOUNT_FILE = 'credentials/credentials.json'
credentials = service_account.Credentials.from_service_account_file(
SERVICE_ACCOUNT_FILE, scopes=SCOPES)
cloudfunction = googleapiclient.discovery.build('cloudfunctions', 'v1', credentials=credentials)
#projects/{project_id}/locations/{location_id}/functions/{function_id}.
path='some project path'
data='some data in json that works when invoked through the console'
data=json.dumps(data)
a=cloudfunction.projects().locations().functions().call(name=path, body=data).execute()
我现在又遇到一个错误。
Details: "[{'@type': 'type.googleapis.com/google.rpc.BadRequest', 'fieldViolations': [{'description': 'Invalid JSON payload received. Unknown name "": Root element must be a message.'}]}]">
我找不到这方面的任何文档。 JSON应该怎么组成?
让 json 像 {"message":{my actual payload}}
是行不通的。
可以找到请求的文档 here。
请求正文参数应该是具有以下形式的对象:
{ # Request for the `CallFunction` method.
"data": "A String", # Input to be passed to the function.
}
对您的代码进行以下修改应该可以正常工作:
from google.oauth2 import service_account
import googleapiclient.discovery
SCOPES = ['https://www.googleapis.com/auth/cloud-platform']
SERVICE_ACCOUNT_FILE = 'credentials/credentials.json'
credentials = service_account.Credentials.from_service_account_file(
SERVICE_ACCOUNT_FILE, scopes=SCOPES)
cloudfunction = googleapiclient.discovery.build('cloudfunctions', 'v1', credentials=credentials)
path ="projects/your-project-name/locations/cloud-function-location/functions/name-of-cloud-function"
data = {"data": "A String"}
a=cloudfunction.projects().locations().functions().call(name=path, body=data).execute()
请注意,允许的流量非常有限,因为有 limits 个 API 调用。