Reputation: 1
Using the Azure weather API, I would like to know what weather possibilities it can bring in the "phrase" field.
In the documentation, we have a list of icons (here), which gives a clue about this, but in this list there are some things that are certainly not the weather.
Is there any way I can get this list of phrases?
Upvotes: 0
Views: 99
Reputation: 601
You can invoke the Get-Current-Conditions Weather REST API to Successfully retrieve detailed current weather conditions and in the response it will list out the various phrases that are available.
Alternatively, Please refer the list of the enums available for phrase
in this REST API Specs article.
Upvotes: 0