- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在使用 requests 包的 api 调用突然返回以下错误:“UnicodeError:使用‘idna’编解码器编码失败(UnicodeError:标签为空或太长)”
我不知道如何解决这个问题。我的代码如下所示,为此示例伪造了某些凭据:
api_key= '123abc'
password = '12345' #password that only idiots use on their luggage
shop_name = 'myshopname'
shop_url = 'https://%s:%s@%s.myecommercesite.com/admin/customers/1234567.json' %(api_key, password, shop_name)
a = requests.get(shop_url)
当我打印 shop_url 并将其粘贴到我的浏览器中时,我得到了返回的数据,这是我在 json 中期望的。但是当我运行这个请求时,我得到了 idna 编解码器错误。
这曾经没有问题,但显然某处发生了变化,我不确定它是与电子商务网站有关还是与请求有关,或者是什么导致了这种情况。
有没有人遇到过这种类型的错误或知道如何修复它?
如果我打印 url,它看起来像:https://123abc:12345@myshopname.myecommercesite.com/admin/customers/1234567.json
编辑2:忘记在我的代码示例中包含 %(api_key, password, shop_name)编辑:以下是完整的错误消息:
UnicodeError Traceback (most recent call last)
~/anaconda3/lib/python3.6/encodings/idna.py in encode(self, input, errors)
164 if not (0 < len(label) < 64):
--> 165 raise UnicodeError("label empty or too long")
166 if len(labels[-1]) >= 64:
UnicodeError: label empty or too long
The above exception was the direct cause of the following exception:
UnicodeError Traceback (most recent call last)
<ipython-input-15-f834b116b751> in <module>()
----> 1 a = requests.get(shop_url)
~/anaconda3/lib/python3.6/site-packages/requests/api.py in get(url, params, **kwargs)
70
71 kwargs.setdefault('allow_redirects', True)
---> 72 return request('get', url, params=params, **kwargs)
73
74
~/anaconda3/lib/python3.6/site-packages/requests/api.py in request(method, url, **kwargs)
56 # cases, and look like a memory leak in others.
57 with sessions.Session() as session:
---> 58 return session.request(method=method, url=url, **kwargs)
59
60
~/anaconda3/lib/python3.6/site-packages/requests/sessions.py in request(self, method, url, params, data, headers, cookies, files, auth, timeout, allow_redirects, proxies, hooks, stream, verify, cert, json)
497
498 settings = self.merge_environment_settings(
--> 499 prep.url, proxies, stream, verify, cert
500 )
501
~/anaconda3/lib/python3.6/site-packages/requests/sessions.py in merge_environment_settings(self, url, proxies, stream, verify, cert)
670 # Set environment's proxies.
671 no_proxy = proxies.get('no_proxy') if proxies is not None else None
--> 672 env_proxies = get_environ_proxies(url, no_proxy=no_proxy)
673 for (k, v) in env_proxies.items():
674 proxies.setdefault(k, v)
~/anaconda3/lib/python3.6/site-packages/requests/utils.py in get_environ_proxies(url, no_proxy)
690 :rtype: dict
691 """
--> 692 if should_bypass_proxies(url, no_proxy=no_proxy):
693 return {}
694 else:
~/anaconda3/lib/python3.6/site-packages/requests/utils.py in should_bypass_proxies(url, no_proxy)
674 with set_environ('no_proxy', no_proxy_arg):
675 try:
--> 676 bypass = proxy_bypass(netloc)
677 except (TypeError, socket.gaierror):
678 bypass = False
~/anaconda3/lib/python3.6/urllib/request.py in proxy_bypass(host)
2610 return proxy_bypass_environment(host, proxies)
2611 else:
-> 2612 return proxy_bypass_macosx_sysconf(host)
2613
2614 def getproxies():
~/anaconda3/lib/python3.6/urllib/request.py in proxy_bypass_macosx_sysconf(host)
2587 def proxy_bypass_macosx_sysconf(host):
2588 proxy_settings = _get_proxy_settings()
-> 2589 return _proxy_bypass_macosx_sysconf(host, proxy_settings)
2590
2591 def getproxies_macosx_sysconf():
~/anaconda3/lib/python3.6/urllib/request.py in _proxy_bypass_macosx_sysconf(host, proxy_settings)
2560 if hostIP is None:
2561 try:
-> 2562 hostIP = socket.gethostbyname(hostonly)
2563 hostIP = ip2num(hostIP)
2564 except OSError:
UnicodeError: encoding with 'idna' codec failed (UnicodeError: label empty or too long)
最佳答案
这似乎是 socket
模块的问题。当 URL 超过 64 个字符时,它将失败。这仍然是一个悬而未决的问题 https://bugs.python.org/issue32958
The error can be consistently reproduced when the first substring of the url hostname is greater than 64 characters long, as in "0123456789012345678901234567890123456789012345678901234567890123.example.com". This wouldn't be a problem, except that it doesn't seem to separate out credentials from the first substring of the hostname so the entire "[user]:[secret]@XXX" section must be less than 65 characters long. This is problematic for services that use longer API keys and expect their submission over basic auth.
还有一个替代方案:
您似乎正在尝试使用 Shopify API,所以我将以它为例。
在 base64
中对 {api_key}:{password}
进行编码,并将此值发送到请求的 header 中,例如。 {'Authorization': 'Basic {token_base_64}'}
请看下面的例子:
import base64
import requests
auth = "[API KEY]:[PASSWORD]"
b64_auth = base64.b64encode(auth.encode()).decode("utf-8")
headers = {
"Authorization": f"Basic {b64_auth}"
}
response = requests.get(
url="https://[YOUR-SHOP].myshopify.com/admin/[ENDPOINT]",
headers=headers
)
关于python 请求 - 使用 'idna' 编解码器编码失败(UnicodeError : label empty or too long) error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51901399/
我在 set() 中创建并填充了希腊名字,然后将这组值传递给 View 函数。 当我尝试打印这组希腊名字时,它们显示为乱码。我相信这与 Apache mod_wsgi 或 Bottle 不支持 utf
我正在尝试写入文件,但出现以下错误: Traceback (most recent call last): File "/private/var/folders/jv/9_sy0bn10mbdft
在我的代码中,我不断收到此错误... UnicodeEncodeError: 'charmap' codec can't encode character '\u2013' in position 3
我有以下 Python 脚本: # -*- coding: utf-8 -*- import sys, locale locale.setlocale(locale.LC_ALL, 'en_US.ut
如果遇到 unicode 错误,有时很难找到问题的根源。这个字符串是从哪里来的? 有没有办法显示字符串(或部分错误字符串)? 最佳答案 您可以使用此代码段: try: html = html.
def openFile(fileName): try: trainFile = io.open(fileName,"r",encoding = "utf-8") ex
看完后:Dive into Python: Unicode Discussion 我很想尝试在 indic script 中打印我的名字。我正在使用 v2.7.2 - >>> import sys >
我正在尝试显示来自 firebird 3.x 数据库的结果,但得到: File "/...../Envs/pos/lib/python3.6/site-packages/fdb/fbcore.py",
我遇到了 Blockcypher for Python 的严重问题。一个简单的代码片段 import sys from blockcypher import get_address_overview
我正在使用 Django 的国际化功能为 Web 应用程序生成翻译字符串。 在我尝试调用 makemessages 时出现问题,现有语言 .po 文件包含特殊字符(例如 $ , £ 等)。 如果其中之
UnicodeEncodeError: 'latin-1' codec can't encode character '\u2019' in position 26612: Body ('’') is
UnicodeEncodeError: 'latin-1' codec can't encode character '\u2019' in position 26612: Body ('’') is
我正在编写一些需要同时使用 Py2.7 和 Py3.7+ 的代码。 我需要使用 UTF-8 编码将文本写入文件。我的代码如下所示: import six ... content = ... if is
我一直在使用 requests 包的 api 调用突然返回以下错误:“UnicodeError:使用‘idna’编解码器编码失败(UnicodeError:标签为空或太长)” 我不知道如何解决这个问题
import os from azure.storage.blob import BlockBlobService, baseblobservice from django.http import J
我是一名优秀的程序员,十分优秀!