发送"&"时出现字符串异常Json格式的应用引擎

本文关键字:quot 格式 应用 引擎 Json 发送 字符串 异常 | 更新日期: 2023-09-27 18:01:57

我正在尝试发送Facebook图形链接到AppEngine服务器。我收到"畸形字符串异常"。下面是我发送json到服务器的方法:

public async Task<string> SendJSONData(string urlToCall, string JSONData)
    {
        // server to POST to
        string url = urlToCall;
        // HTTP web request
        var httpWebRequest = (HttpWebRequest)WebRequest.Create(url);
        httpWebRequest.ContentType = "application/x-www-form-urlencoded";
        httpWebRequest.Method = "POST";
        // Write the request Asynchronously 
        using (var stream = await Task.Factory.FromAsync<Stream>(httpWebRequest.BeginGetRequestStream,
                                                                 httpWebRequest.EndGetRequestStream, null))
        {
            //create some json string
            string json = "action=" + JSONData;
            // convert json to byte array
            byte[] jsonAsBytes = Encoding.UTF8.GetBytes(json);
            // Write the bytes to the stream
            await stream.WriteAsync(jsonAsBytes, 0, jsonAsBytes.Length);
        }
        WebResponse response = await httpWebRequest.GetResponseAsync();
        StreamReader requestReader = new StreamReader(response.GetResponseStream());
        String webResponse = requestReader.ReadToEnd();
        return webResponse; }

以下是我使用Fiddler嗅探的内容:

POST http://x.appspot.com/register HTTP/1.1
Accept: */*
Content-Length: 376
Accept-Encoding: identity
Content-Type: application/x-www-form-urlencoded
User-Agent: NativeHost
Host: x.appspot.com
Connection: Keep-Alive
Pragma: no-cache
action={
  "mailFb": "mail@gmail.com",
  "userName": "Michael",
  "userSurname": "w00t",
  "nickname": "Michael w00t",
  "userSex": "male",
  "userAvatar": "https://graph.facebook.com/myperfectid/picture?type=large&access_token=BlahblahblahblahToken"
}

所以一切看起来都很好,但问题是我在AppEngine日志中收到以下错误:

2013-03-02 17:52:10.431 /register 500 56ms 0kb NativeHost
W 2013-03-02 17:52:10.427 /register com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Unterminated string at line 7 column 79 at com.google.g
C 2013-03-02 17:52:10.429 Uncaught exception from servlet com.google.gson.JsonSyntaxException: com.google.gson.stream.MalformedJsonException: Unterminated string at line 7 colu

我设法把问题缩小到它的根源,那就是"&"字符。我的问题是,如何修复代码,让它与AppEngine一起工作。哦,这是我如何读取服务器上接收到的数据:

gson.fromJson(reader, User.class);

发送"&"时出现字符串异常Json格式的应用引擎

你声称你发送的是" Content-Type: application/x-www-form-urlencoded "
这个事实突出了这个问题。但事实并非如此。因此出现了错误。

&的正确编码为&amp;