Mateus Z3
Mateus Z3
One thing worked for me: Check the box "beta use unicode utf-8 for worldwide language support" located at: Time & Language -> Language -> "Administrative Language Settings"
This way it doesn't give any error when instancing but later when trying to, for example: `jira_instance.myself()` or `jira_instance.issue()` it does I'm getting the token trough [OAuth 2.0 (3LO) apps](https://developer.atlassian.com/cloud/jira/software/oauth-2-3lo-apps/),...
Update: I was able to create an instance using this: ```py JIRA( server=f"https://api.atlassian.com/ex/jira/{cloud_id}", token_auth=access_token, validate=False ) ``` there are a few enpoints, like `myself()` that doesnt work because of the...