我想制作一个评论表单,以便从Android应用程序向基于Wordpress的网站提交评论。 这是我的第一个Android应用程序,我从来没有这样做,所以任何建议都会很棒。
我想我可以使用Http请求发送帖子数据吗?
答案 0 :(得分:1)
根据Wordpress支持论坛的this post,最好的方法是查看official Android app,它是开源的。
答案 1 :(得分:0)
获取名称值对并以给定格式添加kIds及其值
nameValuePairs.add(new BasicNameValuePair("Cmnt_Key", strcmnt));
传递了链接的url和下面函数中的namevaluepair
public static HttpResponse postData(String strUrl, List<NameValuePair> nameValuePairs)
{
// Create a new HttpClient and Post Header
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(strUrl);
try
{
// Add your data
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
response = httpclient.execute(httppost);
}
catch (ClientProtocolException e)
{
// TODO Auto-generated catch block
}
catch (IOException e)
{
// TODO Auto-generated catch block
}
return response;
}