BassdoxXx
Results
1
comments of
BassdoxXx
Had same Issue. I got it solved in netbox_api.py, with setting the AUTH_HEADER manualy def connect_api(self): try: self.netbox = pynetbox.api(self.url, token=self.token) # Manuel set Auth_header! self.netbox.http_session.headers.update({"Authorization": f"Token {self.token}"}) if self.ignore_ssl:...