gpt4 book ai didi

python - chalice 中缺少公钥文件

转载 作者:行者123 更新时间:2023-12-02 13:45:06 28 4
gpt4 key购买 nike

我正在与 chalice 一起工作 Chalice (编写python rest api)和cashfree sdk Cashfree SDK (转账)。

我有一个 public_key.pem 文件,它有助于维护动态 IP DYnamic Link Info .

我已经能够在本地运行此代码......但是当我部署它时...... it says cannot find key.pem .我无法理解我应该如何将我的 key 文件传递给它。

@app.route('/payment', methods=[ 'POST'])
def payment():
json_input = app.current_request.json_body
transferID = json_input["transferID"]
amt = json_input["amt"]
try:
Payouts.init(clientId,
clientSecret,
env ,
public_key_path="key.pem")
try:
request_transfer_response = Transfers.request_transfer(beneId="JOHN18012",
transferId=transferID,
transferMode="upi",
amount=amt)
except Exception as e:
return {"error1":str(e)}
except Exception as e:
return {"error2":str(e)}


return json.loads(request_transfer_response.content)

最佳答案

所以,因为我无法通过 chalice deploy 传递 key 文件。我将 key 文件添加到 S3 存储桶并在运行时调用它以成功执行我的代码。

关于python - chalice 中缺少公钥文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61964494/

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