In v1.6, we have updated all of the currently wrapped and supported Webex Teams API endpoints and closed out all existing issues that users opened on the v1.x releases. The library should now be up-to-date in supporting the Webex Teams APIs documented at developer.webex.com. It ***is not*** yet up-to-date in supporting the newer and broader Webex Meetings, Calling, and Devices APIs. We are tracking adding these additional API endpoints in issue 113, and we will work to add full support for all of the published Webex APIs in v2.x of the library.
With release v1.6, we are wrapping up active development on the v1.x release and shifting our focus to the next major release v2!
Breaking Change(s)
We have introduced **one (1)** breaking change in v1.6:
- We have changed the function signature (parameter names) for the `WebexTeamsAPI.guest_issuer.create()` method to align it with the developer documentation at developer.webex.com.
Previous method definition:
python
def create(self, subject, displayName, issuerToken, expiration, secret):
...
python
def create(self, sub, name, iss, exp, secret):
...