示例#1
0
 public string info(object[] args)
 {
     Weixin weixin = new Weixin ();
     string openId = Convert.ToString (args [0]);
     string json= weixin.GetInfo (weixin.GetAccessToken(), openId);
     return weixin.GetJsonValue (json, "nickname");
 }