我正在尝试在Google Cloud Function中将Google Cloud Platform自然语言API与Python结合使用。每当我使用this Google教程中提供的代码来使用Cloud Storage中的文本分析实体分析时,都会收到以下错误消息:
File "/user_code/main.py", line 9, in entity_sentiment_file
type=enums.Document.Type.PLAIN_TEXT)
TypeError: <Request 'http://25e4801f1004e4eb41d11633d9b2e9e9-dot-ad6bdc7c397c15e62-tp.appspot.com/'
[POST]> has type LocalProxy, but expected one of: bytes, unicode
在成功部署功能并单击带有空花括号{}的触发事件的“测试功能”后,我获得了该错误消息,然后转到“查看日志”页面。
我尝试提供如下所示的测试事件参数,但获得了相同的结果。
{"gcs_uri":"gs://test-news-articles/news-article-1.txt"}
这是我的全部功能:
from google.cloud import language
from google.cloud.language import enums
from google.cloud.language import types
def entity_sentiment_file(gcs_uri,request=None):
print('gcs_uri: {}'.format(gcs_uri))
client = language.LanguageServiceClient()
document = types.Document(
gcs_content_uri=gcs_uri,
type=enums.Document.Type.PLAIN_TEXT)
# Detect and send native Python encoding to receive correct word offsets.
encoding = enums.EncodingType.UTF32
if sys.maxunicode == 65535:
encoding = enums.EncodingType.UTF16
result = client.analyze_entity_sentiment(document, encoding)
for entity in result.entities:
print(u'Name: "{}"'.format(entity.name))
for mention in entity.mentions:
print(u' Begin Offset : {}'.format(mention.text.begin_offset))
print(u' Content : {}'.format(mention.text.content))
print(u' Magnitude : {}'.format(mention.sentiment.magnitude))
print(u' Sentiment : {}'.format(mention.sentiment.score))
print(u' Type : {}'.format(mention.type))
print(u'Salience: {}'.format(entity.salience))
print(u'Sentiment: {}\n'.format(entity.sentiment))
任何帮助将不胜感激。
答案 0 :(得分:2)
响应HTTP请求的功能需要具有签名:
def my_function(request):
...
其中request
由Cloud Functions运行时针对每个新请求提供。
现在,gcs_uri
被设置为request
值(这是LocalProxy
类型),然后您试图用它格式化字符串,这会导致异常
我不确定您期望gcs_uri
的来源,但是不会将其作为参数提供给函数。如果您要使用JSON进行请求,则可以使用request.json['gcs_uri']
使用该请求。有关更多详细信息,请参见“ Writing HTTP Functions”。