本代码示例是基于C#的六派数据接口进行数据请求  API服务请求的代码示例,使用前你需要:
             ①:通过https://www.6api.net/api/gold/ 申请API服务
  
             以下是完整代码示例:
               
                
class Response
{
  public string statusCode;
}
static void Main(string[] args)
{
  string method = "POST";
  string url = "http://open.liupai.net/gold/shgold";
  Dictionary<string, string> param = new Dictionary<string, string>();
     param.Add("appkey", "yourappsecret");
     param.Add("goldid", "参数1");//编号可包含 1051:黄金T+D,1052:白银T+D,1053:黄金9999,1054:黄金9995,1055:白银9999,1056:铂金9995,1057:白银999,1058:金条100g,1059:黄金T+N1,1060:黄金T+N2
  Dictionary<string, string> headers = null;
  string result = api_send_request(method, url, param, headers);
  if (result == "")
  {
      //返回内容异常,发送请求失败
      Console.WriteLine("发送请求失败");
      return;
  }
  Response res = new JavaScriptSerializer().Deserialize<Response>(result);
  if (res.statusCode == "200") //有个别接口计费状态码为其他;请注意甄别
  {
      //状态码为200, 说明请求成功
      Console.WriteLine(string.Format("请求成功: {0}", result));
  }
  else
  {
      //状态码非200, 说明请求失败
       Console.WriteLine(string.Format("请求失败: {0}", result));
  }
  Console.ReadLine();
} 
               
             
             
                        
             
          
             本代码示例是基于C#的六派数据接口进行数据请求  API服务请求的代码示例,使用前你需要:
             ①:通过https://www.6api.net/api/gold/ 申请API服务
  
             以下是完整代码示例:
               
                
class Response
{
  public string statusCode;
}
static void Main(string[] args)
{
  string method = "POST";
  string url = "http://open.liupai.net/gold/shgold_history";
  Dictionary<string, string> param = new Dictionary<string, string>();
     param.Add("appkey", "yourappsecret");
     param.Add("goldid", "参数1");//编号可包含 1051:黄金T+D,1052:白银T+D,1053:黄金9999,1054:黄金9995,1056:铂金9995,1058:金条100g,1059:黄金T+N1,1060:黄金T+N2,1080:iAu9999,1081:mAuT+D
     param.Add("date", "参数2");//查询的年月日 20161101
  Dictionary<string, string> headers = null;
  string result = api_send_request(method, url, param, headers);
  if (result == "")
  {
      //返回内容异常,发送请求失败
      Console.WriteLine("发送请求失败");
      return;
  }
  Response res = new JavaScriptSerializer().Deserialize<Response>(result);
  if (res.statusCode == "200") //有个别接口计费状态码为其他;请注意甄别
  {
      //状态码为200, 说明请求成功
      Console.WriteLine(string.Format("请求成功: {0}", result));
  }
  else
  {
      //状态码非200, 说明请求失败
       Console.WriteLine(string.Format("请求失败: {0}", result));
  }
  
               
             
             
                        
             
          
             本代码示例是基于C#的六派数据接口进行数据请求  API服务请求的代码示例,使用前你需要:
             ①:通过https://www.6api.net/api/gold/ 申请API服务
  
             以下是完整代码示例:
               
                
class Response
{
  public string statusCode;
}
static void Main(string[] args)
{
  string method = "POST";
  string url = "http://open.liupai.net/gold/gsgold";
  Dictionary<string, string> param = new Dictionary<string, string>();
     param.Add("appkey", "yourappsecret");
     param.Add("goldid", "参数1");//编号包含,同时查多个用逗号隔开(如:1201,1202,1203,1204,1205,1206) 1201: 现货黄金(XAU) 1202: 现货钯金(XPD) 1203: 现货白银(XAG) 1204: 现货铂金(XAP) 1205: 香港黄金(GT) 1206: 台两黄金(TWGD)
  Dictionary<string, string> headers = null;
  string result = api_send_request(method, url, param, headers);
  if (result == "")
  {
      //返回内容异常,发送请求失败
      Console.WriteLine("发送请求失败");
      return;
  }
  Response res = new JavaScriptSerializer().Deserialize<Response>(result);
  if (res.statusCode == "200") //有个别接口计费状态码为其他;请注意甄别
  {
      //状态码为200, 说明请求成功
      Console.WriteLine(string.Format("请求成功: {0}", result));
  }
  else
  {
      //状态码非200, 说明请求失败
       Console.WriteLine(string.Format("请求失败: {0}", result));
  }
  Console.ReadLine();
} 
               
             
             
                        
             
          
             本代码示例是基于C#的六派数据接口进行数据请求  API服务请求的代码示例,使用前你需要:
             ①:通过https://www.6api.net/api/gold/ 申请API服务
  
             以下是完整代码示例:
               
                
class Response
{
  public string statusCode;
}
static void Main(string[] args)
{
  string method = "POST";
  string url = "http://open.liupai.net/gold/ingold";
  Dictionary<string, string> param = new Dictionary<string, string>();
     param.Add("appkey", "yourappsecret");
     param.Add("goldid", "参数1");//按编号查询 1011:纽约期金(近月) 1012:伦敦黄金 1013:香港黄金 1014:台湾黄金 1015:东京期金(近月)
  Dictionary<string, string> headers = null;
  string result = api_send_request(method, url, param, headers);
  if (result == "")
  {
      //返回内容异常,发送请求失败
      Console.WriteLine("发送请求失败");
      return;
  }
  Response res = new JavaScriptSerializer().Deserialize<Response>(result);
  if (res.statusCode == "200") //有个别接口计费状态码为其他;请注意甄别
  {
      //状态码为200, 说明请求成功
      Console.WriteLine(string.Format("请求成功: {0}", result));
  }
  else
  {
      //状态码非200, 说明请求失败
       Console.WriteLine(string.Format("请求失败: {0}", result));
  }
  Console.ReadLine();
} 
               
             
             
                        
             
          
             本代码示例是基于C#的六派数据接口进行数据请求  API服务请求的代码示例,使用前你需要:
             ①:通过https://www.6api.net/api/gold/ 申请API服务
  
             以下是完整代码示例:
               
                
class Response
{
  public string statusCode;
}
static void Main(string[] args)
{
  string method = "POST";
  string url = "http://open.liupai.net/gold/qhgold";
  Dictionary<string, string> param = new Dictionary<string, string>();
     param.Add("appkey", "yourappsecret");
     param.Add("goldid", "参数1");//按编号查询 1111:纽约黄金 1112:纽约铂 1113:纽约钯 1114:东京黄金 1115:东京铂 1116:东京钯 1117:美原油06 1118:美原油05
  Dictionary<string, string> headers = null;
  string result = api_send_request(method, url, param, headers);
  if (result == "")
  {
      //返回内容异常,发送请求失败
      Console.WriteLine("发送请求失败");
      return;
  }
  Response res = new JavaScriptSerializer().Deserialize<Response>(result);
  if (res.statusCode == "200") //有个别接口计费状态码为其他;请注意甄别
  {
      //状态码为200, 说明请求成功
      Console.WriteLine(string.Format("请求成功: {0}", result));
  }
  else
  {
      //状态码非200, 说明请求失败
       Console.WriteLine(string.Format("请求失败: {0}", result));
  }
  Console.ReadLine();
} 
               
             
             
                        
             
          
             本代码示例是基于C#的六派数据接口进行数据请求  API服务请求的代码示例,使用前你需要:
             ①:通过https://www.6api.net/api/gold/ 申请API服务
  
             以下是完整代码示例:
               
                
class Response
{
  public string statusCode;
}
static void Main(string[] args)
{
  string method = "POST";
  string url = "http://open.liupai.net/gold/gzgold";
  Dictionary<string, string> param = new Dictionary<string, string>();
     param.Add("appkey", "yourappsecret");
     param.Add("goldid", "参数1");//按编号查询 1151:工行纸黄金(美元) 1152:工行纸黄金(人民币) 1153:工行纸白银(美元) 1154:工行纸白银(人民币) 1155:工行纸铂金(美元) 1156:工行纸铂金(人民币) 1157:工行纸钯金(美元) 1158:工行纸钯金(人民币)
  Dictionary<string, string> headers = null;
  string result = api_send_request(method, url, param, headers);
  if (result == "")
  {
      //返回内容异常,发送请求失败
      Console.WriteLine("发送请求失败");
      return;
  }
  Response res = new JavaScriptSerializer().Deserialize<Response>(result);
  if (res.statusCode == "200") //有个别接口计费状态码为其他;请注意甄别
  {
      //状态码为200, 说明请求成功
      Console.WriteLine(string.Format("请求成功: {0}", result));
  }
  else
  {
      //状态码非200, 说明请求失败
       Console.WriteLine(string.Format("请求失败: {0}", result));
  }
  Console.ReadLine();
} 
               
             
             
                        
             
          
             本代码示例是基于C#的六派数据接口进行数据请求  API服务请求的代码示例,使用前你需要:
             ①:通过https://www.6api.net/api/gold/ 申请API服务
  
             以下是完整代码示例:
               
                
class Response
{
  public string statusCode;
}
static void Main(string[] args)
{
  string method = "POST";
  string url = "http://open.liupai.net/gold/idgold";
  Dictionary<string, string> param = new Dictionary<string, string>();
     param.Add("appkey", "yourappsecret");
  Dictionary<string, string> headers = null;
  string result = api_send_request(method, url, param, headers);
  if (result == "")
  {
      //返回内容异常,发送请求失败
      Console.WriteLine("发送请求失败");
      return;
  }
  Response res = new JavaScriptSerializer().Deserialize<Response>(result);
  if (res.statusCode == "200") //有个别接口计费状态码为其他;请注意甄别
  {
      //状态码为200, 说明请求成功
      Console.WriteLine(string.Format("请求成功: {0}", result));
  }
  else
  {
      //状态码非200, 说明请求失败
       Console.WriteLine(string.Format("请求失败: {0}", result));
  }
  Console.ReadLine();
}