Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Maps] Support SAS authentication #37310

Merged
merged 22 commits into from
Jul 6, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make MapsSasCredentialPolicy internal class
dubiety committed Jul 3, 2023
commit ee80f96d9017d3e773ff8156a0c4ae544919e597
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@
namespace Azure.Maps
{
/// <summary> The MapsSasCredentialPolicy used for SAS authentication. </summary>
public class MapsSasCredentialPolicy : HttpPipelineSynchronousPolicy
internal sealed class MapsSasCredentialPolicy : HttpPipelineSynchronousPolicy
{
private readonly string _sasAuthenticationHeader = "Authorization";
private readonly string _sasPrefix = "jwt-sas";
2 changes: 1 addition & 1 deletion sdk/maps/Azure.Maps.Search/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release History

## 1.0.0-beta.4 (Unreleased)
## 1.0.0-beta.4 (2023-07-13)

### Features Added

1 change: 1 addition & 0 deletions sdk/maps/Azure.Maps.Search/src/Azure.Maps.Search.csproj
Original file line number Diff line number Diff line change
@@ -25,6 +25,7 @@
<!-- Shared source from Azure.Maps -->
<ItemGroup>
<ProjectReference Include="$(MSBuildThisFileDirectory)..\..\Azure.Maps.Common\src\Azure.Maps.Common.csproj" />
<Compile Include="$(MSBuildThisFileDirectory)..\..\Azure.Maps.Common\src\MapsSasCredentialPolicy.cs" LinkBase="Shared" />
</ItemGroup>

</Project>