Hi I am trying to connect to Jira python package JIRA
Here is command
j_url = 'https://myserver.com/jira'
JIRA(j_url, auth=(user, pass), max_retries=5)
I am getting the following error. I was not getting this error before. Only thing is changed, I did changed my password yesterday and it failed few times
JIRAError: JiraError HTTP 403 url: https://xxxxxxx/jira/rest/auth/1/session
text: CAPTCHA_CHALLENGE; login-url=xxxxxx/jira/login.jsp
Any idea what could be possible issue here?
It is solved now.
There is Current failed logins count in Jira profile. If it exceed certain threshold then API is failing. You need to get it reset by Admin
Related
I'm trying to post request to https://satreg-api.collegeboard.org/msregadmintestcenter-prod/student/search-test-center-admins and check seat available but keep getting 403 Forbidden error
Pls help me.
Looks like you some sort of a authentication token. The most known method is sending a Bearer-token via the headers. How to get the Token is up to you tho.
I have been recently trying to download my own Udemy courses, as I always did, with Udemy-dl software but I am having the following error:
For about a week, when I do not use token I get this:
[i] : Trying to login using session cookie
[-] : Udemy Says: 403 Forbidden session cookie seems to be expired...
[i] : Updating session cookie..
cloudscraper.exceptions.CloudflareCaptchaProvider: Cloudflare Captcha detected, unfortunately you haven't loaded an anti Captcha provider correctly via the 'captcha' parameter.
Also have these errors, but now when I use token. This is the command I used with token:
python udemy-dl.py https://www.udemy.com/course/python-course/learn/lecture/45714954?start=15#overview -k token.txt -q 1080 -o "C:\My Files"
[i] : Trying to login using session cookie
[-] : Udemy Says: 403 Forbidden session cookie seems to be expired...
[i] : Updating session cookie..
[i] : Logged in successfully.
[-] : Udemy Says: 403 Forbidden on www.udemy.com/api-2.0/users/me/subscribed-courses?fields[course]=id,url,published_title&page=1&page_size=1000&ordering=-last_accessed,-access_time&search=python-course
I have tried several times to empty cookies in by Mozilla browser, log out and in from Udemy.com and update the actual access_token at token.txt, but the error persists when I go back to python.
What should I do?
I am using Python with Jupyter Notebook.
This program downloads many pdfs and works on other machines, however when putting it on another machine with Windows Server 2016 Standard it shows an error.
The function that is causing the error is:
def download_doc(pasta_pdf,base_links):
os.chdir(pasta_pdf)
for link in base_links['Link_Download_Regulamento']:
if link != None:
wget.download(link)
else:
continue
download_doc(pasta_origem,df_regulamentos_novos)
The error print:
enter image description here
Thanks for your assistance.
You got
HTTPError: HTTP Error 403: Forbidden
If you got information about HTTP response status code, but do not know what it does mean, then you might consult developer.mozilla.org docs, in this case this is 403 Forbidden
The client does not have access rights to the content; that is, it is
unauthorized, so the server is refusing to give the requested
resource. Unlike 401, the client's identity is known to the server.
I am trying to implement facebook social Oauth login on my Django app but I am faced with the below error.
I have tried changing my from http to https on Valid OAuth Redirect URIs.
I am trying to redirect to this Url mysite.com:8000/social-auth/complete/facebook/ but it is given me the below error response.
I also tried https://localhost url and it seems to work for fine.
Thank to the script, I've logged in google successfully.
But I replaced the value of "gv_home_page_url" with http:// www.google.com.tw/dictionary/wordlist?hl=zh-TW, the error occured.
The message is "
urllib2.HTTPError: HTTP Error 500: Internal Server Error"
Any idea will be appreciated, thanks.
That's not a valid URL. If you try to enter it in your bar, you'll get redirected to Google search results. Using urllib2, you'll get an error.
See here for another way to get data from Google Dictionary:
http://googlesystem.blogspot.com/2009/12/on-googles-unofficial-dictionary-api.html
Does Google require an SSL url? You're using "http://" but the example script uses "https://"