gpt4 book ai didi

python - Json 正文在 AWS Lambda 函数中使用非英文字符被截断

转载 作者:行者123 更新时间:2023-12-05 07:29:24 28 4
gpt4 key购买 nike

我正在使用 API 网关和 AWS Lamdba 函数作为我公司 API (C# Web API 2.0) 的代理Lambda 函数是用 Python 2.7 编写的,我正在使用 Pyhton 的 urllib2 将 http 请求传递给 API。

我在发送包含希伯来字符的 json 正文时遇到了一个奇怪的问题。Json 在中间被切断。我确保从 Lambda 发送的 Json 是完整的,但在 Lambda 中接收到的 json 正文在途中某处被篡改了。

这是 Lambda 函数:

from __future__ import print_function

import json
import urllib2
import HTMLParser


base = "http://xxxxxx/api"

hparser = HTMLParser.HTMLParser()

def lambda_handler(event, context):
print("Got event\n" + json.dumps(event, indent=2))

# Form URL
url = base + event['queryStringParameters']['rmt']
print('URL = %s' % url)
req = urllib2.Request(url)
if 'body' in event:
if event['body']:
print('BODY = %s' % json.dumps(event['body'], ensure_ascii=False, encoding='utf8') )
req.add_data(json.dumps(event['body'], ensure_ascii=False, encoding='utf8'))


# Copy only some headers
if 'headers' in event:
if event['headers']:
copy_headers = ('Accept', 'Content-Type', 'content-type')
for h in copy_headers:
if h in event['headers']:
print('header added = %s' % event['headers'][h])
req.add_header(h, event['headers'][h])


# Build response
out = {}
headersjsonstr = ('Access-Control-Allow-Origin', '')
response_header = {}

try:
print('Trying here...')
resp = urllib2.urlopen(req)
out['statusCode'] = resp.getcode()
out['body'] = resp.read()
for head in resp.info().headers:

keyval = head.split(':')
if any(keyval[0] in h for h in headersjsonstr):
response_header[keyval[0]] = keyval[1].replace('\r','').replace('\n','').strip()

print('response_header = %s' % response_header )
out['headers'] = response_header
print('status = %s' % out['statusCode'] )

except urllib2.HTTPError as e:

out['statusCode'] = e.getcode()
out['body'] = e.read()
out['headers'] = e.headers
print('status = %s' % out['statusCode'] )

return out

这是Post请求原始主体Json

{"company":"שלום","guests":[{"fullname":"אבי","carno":"67"}],"fromdate":"2018-10-10","todate":"2018-10-10","fromtime":"07:31","totime":"07:31","comments":null,"Employee":{"UserId":"ink1445"}}

这就是我在 API 上得到的:

"{\"company\":\"שלום\",\"guests\":[{\"fullname\":\"אבי\",\"carno\":\"67\"}],\"fromdate\":\"2018-10-10\",\"todate\":\"2018-10-10\",\"fromtime\":\"07:31\",\"totime\":\"07:31\",\"comments\":null,\"Employee\":{\"UserId\":\"ink1

同样,当我只发送英文字母时一切正常。

请帮忙!

谢谢

最佳答案

很可能您的 json 缓冲区太小,导致溢出截断。

大小可能是假设 ASCII 或 utf-8 编码设置的,并且您的 unicode 字符更宽(消耗更多字节)。

根据您使用的 json 包,您可以为 unicode 设置一个选项,或者您可能需要手动调整缓冲区大小。

关于python - Json 正文在 AWS Lambda 函数中使用非英文字符被截断,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52794906/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com