Browse Source

Merge pull request #418 from colinin/4.4.2

fix(open-api:sdk): URL编码之后转换大写
pull/426/head
yx lin 4 years ago
committed by GitHub
parent
commit
4626bf6e73
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      aspnet-core/modules/open-api/OpenApi.Sdk/OpenApi/ClientProxy.cs

2
aspnet-core/modules/open-api/OpenApi.Sdk/OpenApi/ClientProxy.cs

@ -153,7 +153,7 @@ namespace OpenApi
private static string UrlEncode(string str) private static string UrlEncode(string str)
{ {
return HttpUtility.UrlEncode(str); return HttpUtility.UrlEncode(str, Encoding.UTF8).ToUpper();
} }
} }
} }

Loading…
Cancel
Save