You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This wrapper makes it easy to authenticate via OAuth with Jira, but may not support all REST API endpoints for Jira.
I'm interested in leveraging the wrapper to authenticate, and then piggyback off that authenticated session to make standard PUT and POST requests to Jira endpoints using the Requests library. Is this possible? How would such a request look like if I wanted to piggyback off the authenticated session?
Hi @dzhu-fastly ,
about new REST API endpoints, I would say, feel free to raise PR :)
about leveraging wrapper for work with python-requests, you can do it. as we just do inheritance from python-requests module, hence object already put necessary data.
Activity
gonchik commentedon Jun 29, 2020
Hi @dzhu-fastly ,
about new REST API endpoints, I would say, feel free to raise PR :)
about leveraging wrapper for work with python-requests, you can do it. as we just do inheritance from python-requests module, hence object already put necessary data.
Thanks