0

我想制作一个评论表单,以便从 Android 应用程序向基于 Wordpress 的网站提交评论。这是我的第一个 Android 应用程序,我从来没有这样做过,所以任何建议都会很棒。

我想我可以使用 Http 请求来发送帖子数据?

4

2 回答 2

1

根据Wordpress 支持论坛的这篇帖子,最好的方法是查看官方 Android 应用程序,它是开源的。

于 2012-06-26T12:25:53.980 回答
0

取一个名称值对并以给定格式添加 keyId 及其值

      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;
}
于 2012-06-26T12:21:57.380 回答