Him*_*jee 5 python amazon-web-services
我是 python 和 aws 的新手。我不太知道如何在 stackoverflow 中提问。
请不要阻止我。
我正在尝试发送 HTTP Post 请求以将记录放入 Amazon Kinesis Stream。
我在 kinesis 中创建了一个流 mystream。我使用方法post。
我尝试了以下链接来设置网关 api,效果很好。
https://docs.aws.amazon.com/kinesis/latest/APIReference/API_CreateStream.html
我正在尝试使用请求通过 python 代码来完成此操作。
但我收到下面提到的错误:
以下是我的代码:
import sys, os, base64, datetime, hashlib, hmac 
import requests # pip install requests
# ************* REQUEST VALUES *************
method = 'POST'
service = 'kinesis'
host = 'kinesis.eu-west-1.amazonaws.com'
region = 'eu-west-1'
endpoint = 'https://kinesis.eu-west-1.amazonaws.com'
content_type = 'application/x-amz-json-1.1'
amz_target = 'Kinesis_20181114.PutRecord'
request_parameters = '{'
request_parameters += '"StreamName": mystream,'
request_parameters += '"Data":  + base64.b64encode(test) + ,'
request_parameters += '"PartitionKey": 1234 '
request_parameters += '}'
# Key derivation functions. See:
# http://docs.aws.amazon.com/general/latest/gr/signature-v4- 
examples.html#signature-v4-examples-python
def sign(key, msg):
return hmac.new(key, msg.encode('utf-8'), hashlib.sha256).digest()
def getSignatureKey(key,datestamp,region,service):
kDate = sign(('AWS4' +key ).encode('utf-8'), datestamp)
kRegion = sign(kDate,region)
kService = sign(kRegion,service)
kSigning = sign(kService, 'aws4_request')
return kSigning
# Read AWS access key from env. variables or configuration file. Best 
practice is NOT
# to embed credentials in code.
with open ('C:\\Users\\Connectm\\Desktop\\acesskeyid.txt') as f:
       contents = f.read().split('\n')
       access_key = contents[0]
       secret_key = contents[1]
 if access_key is None or secret_key is None:
 print('No access key is available.')
 sys.exit()
# Create a date for headers and the credential string
t = datetime.datetime.utcnow()
amzdate = t.strftime('%Y%m%dT%H%M%SZ')
datestamp = t.strftime('%Y%m%d') # Date w/o time, used in credential scope
canonical_uri = '/'
canonical_querystring = ''
canonical_headers = 'content-type:' + content_type + '\n' + 'host:' + host + 
'\n' + 'x-amz-date:' + amzdate + '\n' + 'x-amz-target:' + amz_target + '\n'
signed_headers = 'content-type;host;x-amz-date;x-amz-target'
payload_hash = hashlib.sha256(request_parameters).hexdigest()
canonical_request = method + '\n' + canonical_uri + '\n' + 
canonical_querystring + '\n' + canonical_headers + '\n' + signed_headers + 
'\n' + payload_hash
algorithm = 'AWS4-HMAC-SHA256'
credential_scope = datestamp + '/' + region + '/' + service + '/' + 
'aws4_request'
 string_to_sign = algorithm + '\n' +  amzdate + '\n' +  credential_scope + 
'\n' +  hashlib.sha256(canonical_request).hexdigest()
signing_key = getSignatureKey(secret_key, datestamp, region, service)
 signature = hmac.new(signing_key, (string_to_sign).encode('utf-8'), 
hashlib.sha256).hexdigest()
 authorization_header = algorithm + ' ' + 'Credential=' + access_key + '/' + 
credential_scope + ', ' +  'SignedHeaders=' + signed_headers + ', ' + 
'Signature=' + signature
print authorization_header;
headers = {'Content-Type':content_type,
       'X-Amz-Date':amzdate,
       'X-Amz-Target':amz_target,
       'Authorization':authorization_header}
 # ************* SEND THE REQUEST *************
print '\nBEGIN REQUEST++++++++++++++++++++++++++++++++++++'
print 'Request URL = ' + endpoint
r = requests.post(endpoint, data=request_parameters, headers=headers)
print '\nRESPONSE++++++++++++++++++++++++++++++++++++'
print 'Response code: %d\n' % r.status_code
print r.text
我收到以下错误
AWS4-HMAC-SHA256 凭证=AKIAI5C357A6YSKQFXEA/20181114/eu-west- 1/kinesis/aws4_request,SignedHeaders=内容类型;主机;x-amz-date;x-amz- 目标,签名=1d7d463e77beaf86930806812188180db9cc7cff0826 63ad547f647a9c6d545a
开始请求++++++++++++++++++++++++++++++++++++++ 请求 URL = https://kinesis.eu-west-1.amazonaws.com
响应++++++++++++++++++++++++++++++++++++++ 响应代码:400
{“__type”:“序列化异常”}
请有人向我解释一下如何纠正上述错误?
代码是否连接到流?数据序列化是否存在问题?
事实上,您得到的SerializationException意味着您的代码正在与 kinesis 对话,但您提供的数据test可能不是有效的 JSON。
那是说:
我强烈建议不要自己执行请求逻辑,而是使用 AWS 的软件开发工具包 (SDK),称为 boto3。
import json
import boto3
kinesis = boto3.client("kinesis")
response = kinesis.put_record(
    StreamName="my-fancy-kinesis-stream",
    Data=json.dumps({
        'example': 'payload',
        'yay': 'data',
        'hello': 'world'
    }),
    PartitionKey="AdjustAsNeeded"
)
print response
这将使用您计算机上的凭证(通过实例元数据或 ~/.aws/config)或环境变量实例化 kinesis 客户端。
然后它需要一个简单的字典并将其转储为数据的 JSON 字符串。
关于分区键有很多话要说,您可以在这里找到。
另外,请查看boto3!
| 归档时间: | 
 | 
| 查看次数: | 3472 次 | 
| 最近记录: |