Could not log in using the SSID method
See original GitHub issueI have switched properly over to the new log in method with SSID and it has been working for a few months. Recently I started to get a failure again saying could not log in again
Traceback (most recent call last):
File "C:\Program Files\Python38\lib\runpy.py", line 193, in _run_module_as_main
return _run_code(code, main_globals, None,
File "C:\Program Files\Python38\lib\runpy.py", line 86, in _run_code
exec(code, run_globals)
File ".\kijiji_repost_headless\__main__.py", line 193, in <module>
main()
File ".\kijiji_repost_headless\__main__.py", line 50, in main
args.function(args)
File ".\kijiji_repost_headless\__main__.py", line 140, in repost_ad
delete_ad(args, api)
File ".\kijiji_repost_headless\__main__.py", line 121, in delete_ad
api.login(args.ssid)
File ".\kijiji_repost_headless\kijiji_api.py", line 107, in login
raise KijijiApiException("Could not log in.")
kijiji_api.KijijiApiException: Could not log in.```
Issue Analytics
- State:
- Created 2 years ago
- Comments:22 (3 by maintainers)
Top Results From Across the Web
Can not connect to the SSID - TechNet
1. Select the SSID and get the username and password prompt. ... 3. I will the try and reconnect but manually type the...
Read more >Solved: Can't Connect To This Network Error [14 Possible Fixes]
This is a step-by-step guide with screenshots to explain the top 14 methods to fix the 'Can't Connect To This Network' Error in...
Read more >How to troubleshoot Android Wi-Fi connection problems
Step 3: Check SSID and IP address · If your network's name is not on the list, the AP or router may be...
Read more >I've entered the correct password, but I still can't connect
I've entered the correct password, but I still can't connect · Double-check that you have the correct password · Try the hex or...
Read more >Can't see or connect to Wi-Fi: T-Mobile Home Internet
Can't see or connect to Wi-Fi Network (SSID). Tip: For additional help with these steps, visit Devices, then select your device and navigate...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
To fix the issues change URL
https://www.kijiji.ca/my/ads.json
tohttps://www.kijiji.ca/my/ads
inkijiji_api.py
. There are two instances of the old URL in that file.Hi @matrix303,
I am using a Raspberry Pi 3B I believe. I am running Ubuntu off of it. Hopefully this helps you and others.
I followed the project’s installation instructions. I created a folder off of my user directory, then git cloned the repo, then initialized and activated a virtual environment for it. After that, I downloaded the packages defined in the projects
requirements.txt
file.I then made my service file (
kijiji_manager.service
) in/etc/systemd/systemd/
directory. Feel free to call you service file whatever you please.Service File Example
WorkingDirectory: the directory where the kijiji-manager project is Environment: Path to your virtual environment activation file I believe. In ubuntu, it is in
<venv_dir_name>/bin/
ExecStart: This actually runs the package (in the working directory specified in the WorkingDirectory variable). Ensure you run it with the-b 0.0.0.0
argument. This will allow you to access the project from another system other than localhost which is the default.After the service file has been created, see the following commands below:
To launch the service:
sudo systemctl start kijiji_manager.service
To check on the status of the service:sudo systemctl status kijiji_manager.service
To enable the service to automatically start if your system unintentionally loses powersudo systemctl enable kijiji_manager.service
. If you do not do this you will have to manually start the service every time it goes down (intentional or not).If you need to review logs of your service use:
sudo journalctl -u kijiji_manager.service
Obviously, replace
kijiji_manager.service
with whatever you call your service file on your system.