求大神看一下,我的post请求对么????
String username = usernameEdit.getText().toString();
String password = passwordEdit.getText().toString();
OkHttpClient client = new OkHttpClient();
RequestBody requestBody = new FormBody.Builder()
.add("username", username)
.add("password", password)
.build();
Request request = new Request.Builder()
.url("http://test.ourwechat.com/test/auth.php")
.post(requestBody)
.build();
没有C币了