skip to Main Content

HTTP response 403. Is the problem with my Apache config or my Python enoding of the URL?

When I access http://my_site.com/api/my_project/submitSearch.php?skills=C+OR+%28C%2B%2B+AND+UML%29 I get an HTTP response of 403. The point being that I am encoding skill=C OR (C++ AND UML) in Python using urllib.parse.quote_plus(). If I use skill=(C++ AND UML), then there is no problem. http://my_site.com/api/my_project/submitSearch.php?skills=%28C%2B%2B+AND+UML%29 I…

VIEW QUESTION
Back To Top
Search