I am trying to get an id from URL but getting the null pointer exception
java.lang.NullPointerException: Attempt to read from field 'java.lang.String com.hex.encode.ID_Model$User.id' on a null object reference at com.hex.encode.Home$3.onResponse(Home.java:99)
and this is the code I am using to get the id:
private void GetID() {
Call<ID_Model> idcall = fetchdata.getIdService().getID(user_search);
idcall.enqueue(new Callback<ID_Model>() {
@Override
public void onResponse(@NonNull Call<ID_Model> call,@NonNull Response<ID_Model> response) {
assert response.body() != null;
String fetched_id =response.body().getUser().getId;//this is where the exception is poping
GetData(fetched_id);
}
@Override
public void onFailure(@NonNull Call<ID_Model> call, @NonNull Throwable t) {
//something//
}
});
}
and below is the fetchdata class:
class fetchdata {
private static UserFetchData userdatafetch = null;
private static UserIDFetch fetchService = null;
static UserIDFetch getIdService() {
if (fetchService == null) {
String id_url = "url_and_it's_working";
Retrofit fetch_id = new Retrofit.Builder()
.baseUrl(id_url)
.addConverterFactory(GsonConverterFactory.create())
.build();
fetchService = fetch_id.create(UserIDFetch.class);
}
return fetchService;
}
public interface UserIDFetch{
@GET("{user_input}"+"/")
Call<ID_Model> getID(@Path("user_input") String s);
}
}
Edit
Here is the Id_Model :
public class ID_Model {
@SerializedName("user")
@Expose
public User user;
public User getUser() {
return user;
}
public class User {
@SerializedName("id")
@Expose
public String id;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}
}
Edit Here is the response from the API Server : https://justpaste.it/4gk8r
Your response looks like this
Which means you have forgot to parse the
graphql
key as well as every other key, therefore the user is null.At an absolute minimum you need a model like this.
My suggestion would be to use an actual GraphQL library rather than Retrofit and generate your model using apollo-codegen (if you use Apollo Client)
You need to check response is successful with
response.isSucessful()
. And it also depends on server side they send the200
when API successfully hit on server and then we need to check the API response is itsuccess
orfailure
on the basis of the response.In your case, I think API call is success with
200
and return some response butresponse.body().getUser()
isnull
. So you have to check the response of API.