From yesterday, openweather extention on the top panel does not show the weather. Its shows "Please wait Loading".
I tried to find the solution. There was a post of creating account on openweather website and use API id. I found that it is a subscription base plan. There was a free plan which allows 60 calls free for weather data.
I thought that the extention is open source. And may be I deleted any package that is required to work the extention so I reinstall the OS. But there is no difference of doing that.
What could possibly go wrong any guidance?
64 Answers
Found a solution on GitLab from @StephGbzh that just worked for me using 20.04. It is most likely an expired CA certificate:
check that you target the right expired certificate
openssl x509 -issuer -enddate -noout -in /usr/share/ca-certificates/mozilla/AddTrust_External_Root.crtwhich will produce the following:
issuer=C = SE, O = AddTrust AB, OU = AddTrust External TTP Network, CN = AddTrust External CA Root notAfter=May 30 10:48:38 2020 GMTbackup
cp /usr/share/ca-certificates/mozilla/AddTrust_External_Root.crt ~delete
sudo rm /usr/share/ca-certificates/mozilla/AddTrust_External_Root.crtupdate the system
sudo update-ca-certificates- restart gnome shell: AltF2,
r, Enter
Another way to fix it without deleting .crt files, or disabling secure http.
In terminal:
Change directory.
cd /etcMake a backup of this file.
ls -al ca-certificates.conf*
sudo cp ca-certificates.conf ca-certificates.conf.BAK
ls -al ca-certificates.conf*Edit this file.
sudo pico ca-certificates.conf
change "AddTrust_External_Root.crt" to "!AddTrust_External_Root.crt"Update certificates.
sudo update-ca-certificates
restart gnome shell with ALT+F2, r, ENTERReference:
Check this
But for me workaround doesn't work on 20.04 :(
My own workaround in ~/.local/share/gnome-shell/extensions/openweather-extension@on 1116 after
_httpSession = new Soup.Session(); add
_httpSession.ssl_strict = false;works fine for me.
2After so many days of struggling and couldn't find any working solution in the internet, I have done it in my way and it worked. I hope this will work for you too..
Here's what I have done.
sudo nautilus
navigate to /usr/share/gnome-shell/extensions on system side
Use ALT and up arrow keys if needed
Permanently delete following folder with shift delete
Refresh by doing ALT F2, r Enter
Goto and install it again
Refresh by doing ALT F2, r Enter