- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
WAPI version used by the Python client
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-07-2021 06:31 PM
Good day to all.
I have update the Python client to its latest version and I am also using a NIOS version supporting up to RESTful API 2.11
"2.11",
"2.11.1",
"2.11.2",
However I have noticed the Python client keeps sending WAPI v2.1 requests. To wit:
https://192.168.2.1/wapi/v2.1/network?network_view=
Does anybody here know what I need to do to make it use something more recent, say, 2.7 or higher?
Thanks in advance for any help on this.
Solved! Go to Solution.
Re: WAPI version used by the Python client
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-08-2021 04:35 AM
Hi,
Could you please confirm the version of the client you are using?
You can explicitly specify the WAPI version while initializing the connector s below:
from infoblox_client import connector opts = {'host': '192.168.1.10', 'wapi_version':'2.11','username': 'admin', 'password': 'admin'} conn = connector.Connector(opts)
Hope this is helpful,
Regards,
Krishna
Re: WAPI version used by the Python client
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-10-2021 07:42 PM
Just awesome!
Thanks a lot!