我正在开发Android应用程序,它将对服务器进行一致的api调用并从服务器解析JSON。 (实际上这个应用程序是一个网络游戏。)现在我们有一个用jQuery编写的web版本,其中使用$ .ajax()调用:
$.ajax({
url: "https://www.example.com/api/base_info/",
type: "POST",
dataType: "json",
crossDomain: true,
data: {
"client_type": "web",
"id": userID,
"access_key": accessToken
},
success: function (data) {
username = data.name;
},
error: function (jqXHR, textStatus, errorThrown) {
console.log(jqXHR, textStatus, errorThrown);
}
});
那么如何在Android中复制这个?我在网上搜索过,看到了很多不同的方法。我不确定哪个最适合Android平台?你能提一些建议吗?如果可能,请使用上面的代码作为示例。提前谢谢!