gpt4 book ai didi

python - 如何通过 TLS 1.2 运行 django runserver

转载 作者:太空狗 更新时间:2023-10-30 02:17:45 24 4
gpt4 key购买 nike

我正在本地 Mac OS X 机器上测试 Stripe 订单。我正在执行这段代码:

stripe.api_key = settings.STRIPE_SECRET

order = stripe.Order.create(
currency = 'usd',
email = 'j@awesomecom',
items = [
{
"type":'sku',
"parent":'sku_88F260aQ',
"quantity": 1,
}
],
shipping = {
"name":'Jenny Rosen',
"address":{
"line1":'1234 Main Street',
"city":'Anytown',
"country":'US',
"postal_code":'123456'
}
},
)

我收到一个错误:

Stripe no longer supports API requests made with TLS 1.0. Please initiate HTTPS connections with TLS 1.2 or later.

我使用的是 django 1.10 和 python 版本 2.7.10

如何强制使用 TLS 1.2?我会在 python 或 django 端执行此操作吗?

最佳答案

我解决了安装这个库的问题:

pip install urllib3
pip install pyopenssl
pip install ndg-httpsclient
pip install pyasn1

解决方案来自:

https://github.com/pinax/pinax-stripe/issues/267

关于python - 如何通过 TLS 1.2 运行 django runserver,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39279079/

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