2

我正在为用 PHP 开发的 REST API 编写一些示例代码片段,虽然我可以设法获得一个“Ruby”示例,但我无法找到一个等价的像样的 ASP.NET(数字)示例. 我想知道是否有任何 ASPer 可以帮助对以下 PHP 进行详细翻译,该 PHP 发出一个带有 JSON 字符串作为其有效负载的 POST 请求。

需要注意的主要事项是 POST 需要一个命名参数“data”,它是一个 JSON 字符串。

    $key='XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX';    // This would be your customer key
    $map='USA';
    $accountid='000';                                   // this would be your account id
    // add some zips to an array
    $zips[]=22201;
    $zips[]=90210;
    $zips[]=10001;

    // We encode an array into JSON
    $data = array("map" => $map, "zips"=>$zips, "accountid" => $accountid, "custkey" => $key);                                                                    
    $data_string = json_encode($data);                       
    // IMPORTANT - the API takes only one POST parameter - data 
    $postdata="data=$data_string";

    // we use curl here, but Zend has Rest interfaces as well...
    $ch = curl_init('https://www.example.com//test/');                                                                      
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'POST');                                                                     
    curl_setopt($ch, CURLOPT_POSTFIELDS, $postdata);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);                                                                      
    curl_setopt($ch, CURLOPT_POST, 1);         // make sure we submit a POST!

    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);

    $result = curl_exec($ch);
    if (curl_errno($ch)) {
      $result=curl_error($ch);
    } else {
      curl_close($ch);
    }

    $jsonObj=json_decode($result);
    if($jsonObj->success){
      $coordinates=$jsonObj->coordinates;               
      foreach($coordinates->coordinates as $coord){
        //... application logic here ( construct XML for the map )
      }
    }

感谢您的帮助 - 我讨厌发布这样的东西,但也许它将来也会帮助其他人!

R

作为对评论的回应-我真正的帮助请求是由于缺乏 ASP 环境来调试/测试示例。例如 - @Chris 发布了一个链接,虽然按面值翻译它似乎微不足道(尝试如下),但我的问题是我不只是以正常的 POST 方式发送数据:

param=val&param2=val2 

它需要像:

data={JSONString}

其中 JSONString 由关联数组组成。然后问题出现在 ASP 中的关联数组(或者明显缺乏关联数组?- http://blog.cloudspotting.co.uk/2010/03/26/associative-arrays-in-asp-net/)一般和那么如何将不存在的关联数组编码为 JSON 字符串,或者如果我尝试改用 NamedValueCollection?似乎 ASP 中的 JSON 支持也参差不齐,所以我确定需要一个特殊的接口吗?

using System.Web;

Uri address = new Uri("http://www.example.com/test/");
// Create the web request
HttpWebRequest request = WebRequest.Create(address) as HttpWebRequest;
// Set type to POST
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
string key = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
string map = "USA";
string accountid = "000";
string data =""; 
NameValueCollection data = new NameValueCollection();
data.Add("custkey", key);
data.Add("map", map);
data.Add("accountid", accountid);

由于 ASP 实际上没有关联数组,如何将数据转换为 JSON?

string jsondata="";



StringBuilder data = new StringBuilder();

使用 UrlEncoding 时,下面的行会破坏吗?

data.Append("data=" + HttpUtility.UrlEncode(jsondata));

// Create a byte array of the data we want to send
byte[] byteData = UTF8Encoding.UTF8.GetBytes(data.ToString());

// Set the content length in the request headers
request.ContentLength = byteData.Length;

// Write data
using (Stream postStream = request.GetRequestStream())
{
  postStream.Write(byteData, 0, byteData.Length);
}
// Get response
using (HttpWebResponse response = request.GetResponse() as HttpWebResponse)
{
   // Get the response stream
   StreamReader reader = new StreamReader(response.GetResponseStream());
   // Console application output
   string jsonResponse =reader.ReadToEnd());
}

所以我想我的问题应该是上面被黑的例子——有人可以告诉我这是否正确或有其他帮助吗?

4

1 回答 1

1

你试过 json.Net 吗?http://james.newtonking.com/pages/json-net.aspx示例:

Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Price = 3.99M;
product.Sizes = new string[] { "Small", "Medium", "Large" };

string json = JsonConvert.SerializeObject(product);
//{
//  "Name": "Apple",
//  "Expiry": "2008-12-28T00:00:00",
//  "Price": 3.99,
//  "Sizes": [
//    "Small",
//    "Medium",
//    "Large"
//  ]
//}

Product deserializedProduct = JsonConvert.DeserializeObject<Product>(json);

结合这个工具,我发现它是最好的 .Net/JSon 组合。

于 2013-03-21T20:51:41.353 回答