2

How can I make my Blazor application to receive the encrypted parameters that contain the encoded special characters such as "/" and "+".

My screenshot can be found here

How should I configure the Blazor parameters, so that they are split and translated correctly?

4

2 回答 2

1

如何让我的 Blazor 应用程序接收

首先,发送应用程序必须正确格式化它以供 URL 使用。你必须知道这种格式。

在 .NET 中,您可以使用Uri.EscapeDataString(),然后Uri.UnescapeDataString()在 Blazor 页面中使用。

于 2019-07-20T16:14:31.900 回答
-1

你可以尝试Base64UrlEncoderMicrosoft.IdentityModel.Tokens

于 2020-06-29T09:12:39.850 回答