我正在创建一个 iPhone 应用程序,并试图弄清楚如何创建对包含参数的 web 服务的 JSON 请求。在 Java 中,这看起来像这样
HashMap<String, String> headers = new HashMap<String, String>();
JSONObject json = new JSONObject();
json.put("nid", null);
json.put("vocab", null);
json.put("inturl", testoverview);
json.put("mail", username); // something@gmail.com
json.put("md5pw", password); // donkeykong
headers.put("X-FBR-App", json.toString());
在服务识别请求之前,标头必须包含 JSON 对象和“X-FBR-App”。这将如何在 Objective-C 中实现?