-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API unable to authenticate after updating Inventree #233
Comments
@SchrodingersGat yes naturally, the latest paste was from one of the tries that I've been running with. Whether it's |
@JacobEFO apologies, I missed the last part where you had already tried that. Looking at the initial error message it is stating an authentication error - this means the username / password combination is incorrect. Incidentally you should remove that data from your post |
I had verified numerous times that both the 'root' user with its accompanying password and my local super user with its respective password could indeed log in on the webpage but would fail authentication on the API. Similarly using a token that had previously been used successfully for authentication prior to updating Inventree failed with the same error. |
That is very odd. I have just confirmed that the latest inventree-python lib works with a local setup and also the demo server. Can you check if you can connect to:
(using your current python setup) |
I can successfully log-in through the web-page but also gain access using the API using username/password. So I might just conclude, this is an inventree installation/setup problem more than the API at least. |
I've got exactly the same issue |
I have still yet to find a resolution. At the moment I put my inventree work on the shelf and hope to return in a newer version where this bug might just be miraculously solved :) |
Yes the demo works. I'm using inventree-python 0.14, installed via pip. Here's the details of my server: Version Information:InvenTree-Version: 0.15.3 Active plugins: [{'name': 'InvenTreeBarcode', 'slug': 'inventreebarcode', 'version': '2.0.0'}, {'name': 'InvenTreeCoreNotificationsPlugin', 'slug': 'inventreecorenotificationsplugin', 'version': '1.0.0'}, {'name': 'InvenTreeCurrencyExchange', 'slug': 'inventreecurrencyexchange', 'version': '1.0.0'}, {'name': 'InvenTreeLabel', 'slug': 'inventreelabel', 'version': '1.0.0'}, {'name': 'InvenTreeLabelMachine', 'slug': 'inventreelabelmachine', 'version': '1.0.0'}, {'name': 'InvenTreeLabelSheet', 'slug': 'inventreelabelsheet', 'version': '1.0.0'}, {'name': 'DigiKeyPlugin', 'slug': 'digikeyplugin', 'version': '1.0.0'}, {'name': 'LCSCPlugin', 'slug': 'lcscplugin', 'version': '1.0.0'}, {'name': 'MouserPlugin', 'slug': 'mouserplugin', 'version': '1.0.0'}, {'name': 'TMEPlugin', 'slug': 'tmeplugin', 'version': '1.0.0'}] |
Ok, so the demo server is running "master" branch, whereas you are running "stable". Perhaps there is a difference there |
Solved for my setup. Thou I tried a coupe of other things as well on the way. "invoke server" worked ok which suggested an apache config issue. @JacobEFO, The following patch helped debug the issue for me.
|
Thanks for following up. However, I seem to have no luck at all still. Where did you add the |
@JacobEFO are you behind another layer of proxy / etc? |
Sorry @SchrodingersGat, sometimes I just don't get updates. I am not behind any proxy or anything like that whatsoever. My network setup has not changed inbetween me switching versions. |
Also having this issue. Trying to use InvenTree python API with local instance but can't connect. It works with the demo instance however. UPDATE: With the InvenTree docker setup, I modified the |
@EliasJRH so, are you saying you could not connect when it was served on port 80? |
@SchrodingersGat I was not able to connect to it with the |
@EliasJRH sorry for the delayed response. Are you saying that |
I have just tested this on a fresh docker setup, with inventree hosted at If I connect (via the python API) to However connecting to Server connection error: <class 'requests.exceptions.SSLError'>
InvenTree server is not connected. Skipping authentication check
Traceback (most recent call last):
File "<pyshell#14>", line 1, in <module>
api = InvenTreeAPI("https://inventree.localhost", username=user, password=password)
File "C:\Python39\lib\site-packages\inventree\api.py", line 77, in __init__
self.connect()
File "C:\Python39\lib\site-packages\inventree\api.py", line 131, in connect
raise ConnectionError("Authentication at InvenTree server failed")
ConnectionError: Authentication at InvenTree server failed |
After updating inventree and the containers to 0.16.1 I managed to get access via the API to adress By including the following settings in the
Next step will be to figure out why my API calls are no longer working correctly. |
@JacobEFO OK I might have something here... It appears that maybe doing subdomain requests against "localhost" (e.g. If you use a locally bound IP address of your machine as the e.g. |
Hi,
After I recently updated Inventree to the latest stable version and the API to 0.14.0 all my API based scripts have problems authenticating yielding a server connection issue. More precisely I get the following error:
I've gone down to a minimum example of the following code, where I have replaced username and password:
I have also tried accessing with a token that worked last week on an older version of Inventree (v14.2 I believe it was). I am wondering why it states: 'InvenTree server is not connected.' because I have access to it on the new platform
https://inventree.localhost/platform
or the old GUI onhttps://inventree.localhost
.I have similarly tried accessing with pots
1337
and8000
but unsurprisingly they do not work, as I have not specified any specific link in theINVENTREE_URL_SITE
environment variable. Switching betweenhttp
andhttps
and using other combinations for the server address such as<URL>/api
,<URL>/platform/api
etc. similarly yield nothing.Do you have any ideas what's going on?
Version info
Macos Monterey: 12.7.5
Inventree source code SHA: 9f35971db17e1660fcd27c752558d41952a3e541
Inventree API: 0.14.0
Docker:
The text was updated successfully, but these errors were encountered: