I am trying to connect to connect to my JIRA cloud instance using JIRA-Python. The following code worked for me at at first:
server = {'server': myServerAddress}
jira = JIRA(server, basic_auth = (myusername, mypass))I was able to connect to both my local instance and the clound instance using this code previously. However, when I run the same exact code now, I get the error:
MissingSchema: Invalid URL 'https:/myinstance.atlassian.net/rest/api/2/serverInfo': No schema supplied. Perhaps you meant http://https:/myinstance.atlassian.net/rest/api/2/serverInfo?
It might be that something about my instance that has changed, but I'm at a loss for what it could be. Does anyone have any insight as to what could be causing this?
Community moderators have prevented the ability to post new answers.
It looks like you are missing a / from the url - https://
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.