首页 > 代码库 > wp调用百度服务api

wp调用百度服务api

通过百度开放平台申请api成功后,百度会提供一个application key简称ak和一个security key简称sk。

看一下某个服务url的格式

1. url前缀

2. 服务类型

3. 参数

4. md5算法

 

下面是sn签名的方法,得到sn的值。

有个地方要注意的是签名前,先对每个参数值进行一次urlencode转换,拼接后再一次都整个字符串进行了urlencode转换。

 1 Dictionary<string, string> parms = new Dictionary<string, string>(); 2 parms.Add("location", "北京"); 3 parms.Add("output", "json"); 4 parms.Add("ak", "---ak---"); 5  6 string queryStr = parms.ToQueryString(); 7 string wholeStr = string.Format("{0}?{1}{2}", "/telematics/v3/weather", queryStr, "---sk---"); 8 string templStr = Uri.EscapeDataString(wholeStr); 9 10 string rst = templStr.CreateMD5();
 1 public static string ToQueryString(this Dictionary<string, string> parms) 2 { 3     string rst = string.Empty; 4     if (parms != null && parms.Count > 0) 5     { 6         StringBuilder sb = new StringBuilder(); 7         foreach (var item in parms) 8         { 9             sb.Append(string.Format("{0}={1}&", item.Key, Uri.EscapeDataString(item.Value)));10         }11         sb.Remove(sb.Length - 1, 1);12         rst = sb.ToString();13     }14     return rst;15 }

md5算法

 1 public static string CreateMD5(this string str) 2 { 3     string strAlgName = Windows.Security.Cryptography.Core.HashAlgorithmNames.Md5; 4     Windows.Security.Cryptography.Core.HashAlgorithmProvider objMacProv = Windows.Security.Cryptography.Core.HashAlgorithmProvider.OpenAlgorithm(strAlgName); 5  6     Windows.Storage.Streams.IBuffer data =http://www.mamicode.com/ Windows.Security.Cryptography.CryptographicBuffer.ConvertStringToBinary(str, Windows.Security.Cryptography.BinaryStringEncoding.Utf8); 7     Windows.Storage.Streams.IBuffer hash = objMacProv.HashData(data); 8  9     return Windows.Security.Cryptography.CryptographicBuffer.EncodeToHexString(hash);10 }

 

最后可以通过浏览器验证一下结果。那么在wp可以通过System.Net.Http.HttpClient GetStringAsync得到返回的json数据。

wp调用百度服务api