簡體   English   中英

Zeep:400 客戶端錯誤:對 url 的錯誤請求

[英]Zeep: 400 Client Error: Bad Request for url

我正在使用 zeep 庫發出帖子請求。 下面是我的代碼。

from zeep import Client
import logging.config

logging.config.dictConfig({
    'version': 1,
    'formatters': {
        'verbose': {
            'format': '%(name)s: %(message)s'
        }
    },
    'handlers': {
        'console': {
            'level': 'DEBUG',
            'class': 'logging.StreamHandler',
            'formatter': 'verbose',
        },
    },
    'loggers': {
        'zeep.transports': {
            'level': 'DEBUG',
            'propagate': True,
            'handlers': ['console'],
        },
    }
})

wsdl = "https://api2.brinkpos.net/Settings.svc?WSDL"
client = Client(wsdl)
result = client.service.GetModifierGroups(accessToken, locationToken)
print(result)

我在行client = Client(wsdl)處收到錯誤消息。 請在下面找到完整的日志:

/Users/dilipyadav/githome/elrond/venv/bin/python /Applications/PyCharm.app/Contents/helpers/pydev/pydevd.py --multiproc --qt-support=auto --client 127.0.0.1 --port 65300 --file /Users/dilipyadav/githome/gimli/test/brink_test.py
pydev debugger: process 18141 is connecting

Connected to pydev debugger (build 192.5728.105)
zeep.transports: Loading remote data from: https://api2.brinkpos.net/Settings.svc?WSDL
Traceback (most recent call last):
  File "/Applications/PyCharm.app/Contents/helpers/pydev/pydevd.py", line 2060, in <module>
    main()
  File "/Applications/PyCharm.app/Contents/helpers/pydev/pydevd.py", line 2054, in main
    globals = debugger.run(setup['file'], None, None, is_module)
  File "/Applications/PyCharm.app/Contents/helpers/pydev/pydevd.py", line 1405, in run
    return self._exec(is_module, entry_point_fn, module_name, file, globals, locals)
  File "/Applications/PyCharm.app/Contents/helpers/pydev/pydevd.py", line 1412, in _exec
    pydev_imports.execfile(file, globals, locals)  # execute the script
  File "/Applications/PyCharm.app/Contents/helpers/pydev/_pydev_imps/_pydev_execfile.py", line 18, in execfile
    exec(compile(contents+"\n", file, 'exec'), glob, loc)
  File "/Users/dilipyadav/githome/gimli/test/brink_test.py", line 28, in <module>
    client = Client(wsdl)
  File "/Users/dilipyadav/githome/elrond/venv/lib/python3.7/site-packages/zeep/client.py", line 68, in __init__
    self.wsdl = Document(wsdl, self.transport, settings=self.settings)
  File "/Users/dilipyadav/githome/elrond/venv/lib/python3.7/site-packages/zeep/wsdl/wsdl.py", line 80, in __init__
    document = self._get_xml_document(location)
  File "/Users/dilipyadav/githome/elrond/venv/lib/python3.7/site-packages/zeep/wsdl/wsdl.py", line 143, in _get_xml_document
    location, self.transport, self.location, settings=self.settings
  File "/Users/dilipyadav/githome/elrond/venv/lib/python3.7/site-packages/zeep/loader.py", line 78, in load_external
    content = transport.load(url)
  File "/Users/dilipyadav/githome/elrond/venv/lib/python3.7/site-packages/zeep/transports.py", line 110, in load
    content = self._load_remote_data(url)
  File "/Users/dilipyadav/githome/elrond/venv/lib/python3.7/site-packages/zeep/transports.py", line 127, in _load_remote_data
    response.raise_for_status()
  File "/Users/dilipyadav/githome/elrond/venv/lib/python3.7/site-packages/requests/models.py", line 940, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 400 Client Error: Bad Request for url: https://api2.brinkpos.net/Settings.svc?WSDL

Process finished with exit code 1

我在創建 Client 對象本身時失敗了,所以我也無法記錄發布請求。

如果您需要更多信息,請告訴我。

我必須覆蓋 dev wsdl( https://api-devapi01.brinkpos.net/Settings.svc?WSDL ) 才能連接到 prod( https://api2.brinkpos.net/Settings.svc?wsdl )。 所以我不得不通過創建新的 ServiceProxy 對象

https://python-zeep.readthedocs.io/en/master/client.html#creating-new-serviceproxy-objects

它提到了如何處理 WSDL 位於端點不同地址的情況。

下面的工作片段:

client = Client(wsdl=wsdl)
service = client.create_service(
    '{http://tempuri.org/}BasicHttpBinding_ISettingsWebService',
    'https://api2.brinkpos.net/Settings.svc?wsdl')
result = service.GetModifierGroups(accesstoken, locationtoken)
print(result)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM