You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/maps/Azure.Maps.TimeZones/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ MapsTimeZoneClient client = new MapsTimeZoneClient(credential, clientId);
58
58
59
59
Shared access signature (SAS) tokens are authentication tokens created using the JSON Web token (JWT) format and are cryptographically signed to prove authentication for an application to the Azure Maps REST API.
60
60
61
-
Before integrating SAS token authentication, we need to install `Azure.ResourceManager` and `Azure.ResourceManager.Maps` (version `1.1.0-beta.2` or higher):
61
+
Before integrating SAS token authentication, we need to install `Azure.ResourceManager` and `Azure.ResourceManager.Maps` (version `1.1.0` or higher):
Copy file name to clipboardExpand all lines: sdk/maps/README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Below are the packages contained in Azure Maps:
11
11
-[Azure.Maps.Routing][route] allows you to get the routing information for multiple origins and destinations.
12
12
-[Azure.Maps.Search][search] supports many searching functionalities for entities, point of interests (POI) or streets, and also supports reverse geocode a coordinate to a place or an entity.
13
13
-[Azure.Maps.Geolocation][geolocation] allows you to get the ISO country code for the provided IP address.
14
-
-[Azure.Maps.TimeZone][timezone]
14
+
-[Azure.Maps.TimeZones][timezone] allows you to get time zone information for the world.
15
15
-[Azure.Maps.Weather][weather] allows you to get real-time, forecasted, and historical weather data.
There are 2 ways to authenticate the client: Shared key authenticationand Azure AD. Please refer to each package's README for details.
42
+
There are 3 ways to authenticate the client: Shared key authentication, Microsoft Entra and Shared Access Signature (SAS) Authentication. Please refer to each package's README for details.
43
43
44
44
## Key concepts
45
45
@@ -75,7 +75,7 @@ using Azure.Maps.Routing;
75
75
usingAzure.Maps.Search;
76
76
```
77
77
78
-
In the main function, instantiate `MapsSearchClient`, `MapsRoutingClient` and `MapsRenderingClient` either via AAD or subscription key authentication. Below is an example of instantiation via AAD:
78
+
In the main function, instantiate `MapsSearchClient`, `MapsRoutingClient` and `MapsRenderingClient` either via subscription key, Microsoft Entra, or SAS token authentication. Below is an example of instantiation via Microsoft Entra:
79
79
80
80
```C#
81
81
// Create a MapsSearchClient and MapsRoutingClient that will authenticate through Active Directory
@@ -221,7 +221,7 @@ additional questions or comments.
0 commit comments