使用 .NetCore 1.1.2。
通过 Azure 搜索 SDK 成功获取搜索结果后,我正在尝试解码 metadata_storage_path 值。我见过有人说要在 .NET 中使用 HttpServerUtility.UrlTokenDecode 或其他语言中的等价物,如此处所示。
那么问题就变成了,.NetCore 中 HttpServerUtility.UrlTokenDecode 的等价物是什么?和:
var pathEncoded = "aHR0cHM6Ly9mYWtlZC5ibG9iLmNvcmUud2luZG93cy5uZXQvcGRmYmxvYnMvYW5udWFsX3JlcG9ydF8yMDA5XzI0NTU20";
我尝试了以下方法:
var pathbytes = Convert.FromBase64String(pathEncoded);
//Throws System.FormatException "Invalid length for a Base-64 char array or string."
和
var pathbytes = WebEncoders.Base64UrlDecode(pathEncoded);
//Throws System.FormatException - "TODO: Malformed input."
有趣的是,如果我切断 pathEncoded 中的最后一个字符,一切都会正常工作......使用 Microsoft.AspNetCore 1.1.2 处理这种情况的正确方法是什么?