我正在使用Post请求实现登录功能,但我收到错误
" retrofit.RetrofitError: com.squareup.okhttp.internal.http.HttpMethod.METHODS"
以下是我的代码
import java.util.HashMap;
import java.util.Map;
import retrofit.Callback;
import retrofit.http.*;
//Myapi.java
import java.util.HashMap;
import java.util.Map;
import retrofit.Callback;
import retrofit.http.*;
public interface MyApi {
/* LOGIN */
@POST("/api/0.01/oauth2/access_token/")
// your login function in your api
public void login(@Body HashMap<String, String> arguments, Callback<String> calback);
}
//In my activity
RestAdapter restAdapter = new RestAdapter.Builder()
.setEndpoint(Constants_Interface.URL).setClient(newclient)
.build();
MyApi mylogin = restAdapter.create(MyApi.class);
HashMap<String, String> dicMap = new HashMap<String, String>();
dicMap.put("client_id", XXX);
dicMap.put("client_secret", XXX);
dicMap.put("username", XXX);
dicMap.put("password", XXX);
mylogin.login(dicMap, new Callback<String>() {
@Override
public void failure(RetrofitError retrofitError) {
retrofitError.printStackTrace(); // to see if you have
// errors
}
@Override
public void success(String s, retrofit.client.Response response) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "Login Succes",
Toast.LENGTH_LONG).show();
}
});
下面是logcat输出。
02-10 13:02:43.846:W / System.err(30684):retrofit.RetrofitError: com.squareup.okhttp.internal.http.HttpMethod.METHODS 02-10
答案 0 :(得分:62)
尝试使用此
public interface SafeUserApi {
@FormUrlEncoded
@POST("/api/userlogin")
void getUserLogin(
@Field("client_id") String id,
@Field("client_secret") String secret,
@Field("username") String uname,
@Field("password") String password,
Callback<LoginResult> cb
);
}
这里parm1是POST参数,您将把它传递给服务器。 这将解决您的问题
如果您使用的是PHP,则可以使用$uname= $_POST('username');
编辑1:
改造2.0版本:
public interface SafeUserApi {
@FormUrlEncoded
@POST("/api/userlogin")
Call<ResponseBody> getUserLogin(
@Field("client_id") String id,
@Field("client_secret") String secret,
@Field("username") String uname,
@Field("password") String password
);
}
答案 1 :(得分:8)
您还可以传递多个字段参数: 例如:
@FormUrlEncoded
@POST("/oauth/access_token")
void getToken(
@FieldMap Map<String, String> params,
Callback<FacebookLoginUserResponse> callback
);
答案 2 :(得分:3)
我今天收到此错误
(“retrofit.RetrofitError:com.squareup.okhttp.internal.http.HttpMethod.METHODS”)
问题是我使用的是不同的版本okhttp和okhttp-urlconnection,所以请确保它们匹配。
答案 3 :(得分:3)
Retrofit 2.0版本:
@FormUrlEncoded
@POST("api/v2/users/sign_in")
Call<SignInResult> userSignIn(
@FieldMap HashMap<String, String> authData
);
答案 4 :(得分:2)
&#34; JSON CONVERSION
Retrofit默认使用Gson将HTTP主体转换为JSON和从JSON转换。如果要指定与Gson的默认值不同的行为(例如命名策略,日期格式,自定义类型) ),在构建RestAdapter时提供具有所需行为的新Gson实例。有关自定义的详细信息,请参阅Gson文档。&#34;
有关详细信息,请参阅链接: http://square.github.io/retrofit/
答案 5 :(得分:0)
您可以使用此类:
public interface SafeUserApi {
@POST("/api/userlogin")
void getUserLogin(@Body PostData postData);
}
public class PostData{
String client_id;
String client_secret;
String username;
String password;
}