Can Anyone Please Share Samsung Weahter API?

Hi,

I am building an app and want to use Samsung Widget (Weather). Does Samsung provides Weather API for the same? If you kindly share with me.

Thanks

@raavikantchouhan

If you are designing watch faces, License issues prevents Samsung from providing any Weather API you would need to license your own weather API and use Android Studio.

Same thing for Android apps. Openweathermap.org has free limited use licenses.

If you are doing wear Watch apps then you should use complications

Finally you can open the Weather App as a button in the Watch Face and I can tell you how to get the App ID for that.

Ron
Samsung Developer Relations

can tell you how to get the App ID for that.

List of all app id(s)?

This is from this topic

go to Play Store and download the Package names app . open it and you will see the apps that are installed on your phone.
or
Try running simple adb commands

adb connect 192.168.xxx.xxx:5555 (your watch IP address & enable debugging)
adb shell
pm list packages

You will get an output list like this only much longer
package:com.android.cts.priv.ctsshim
package:com.google.android.ext.services
package:com.android.providers.telephony

The app ID is the text after package:
for example
package:com.android.providers.telephony
is
com.android.providers.telephony

hope this helps,

Ron
Samsung Developer Relations