Hello,
I trying to setup a bot using Python, but it doesn't seems like the Python SDK has the same methods as the JS SDK.
For example, with the JS SDK, it seems possible to do something like:
rcsdk = new RC({ server: RINGCENTRAL_ENV, appKey: CLIENT_ID, appSecret: CLIENT_SECRET});
platform.login({ code : req.query.code, redirectUri : REDIRECT_HOST + '/oauth' });
Taken from https://github.com/pkvenu/developing-locally-with-Glip/blob/master/app.js
But, in the Python SDK, the login method of the Platform class only takes username and password.
Reference: https://github.com/ringcentral/ringcentral-python/blob/master/ringcentral/platform/platform.py
It doesn't seem like there's a way to do something equivalent with the 'Python SDK' after adding the app/Bot to Glip to finally get the permanent token?