What is this error ? How can I fix this? My app is running but can't load data. And this is my Error: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 1 path $
This is my fragment :
public class news extends Fragment { private RecyclerView recyclerView; private ArrayList<Deatails> data; private DataAdapter adapter; private View myFragmentView; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { myFragmentView = inflater.inflate(R.layout.news, container, false); initViews(); return myFragmentView; } private void initViews() { recyclerView = (RecyclerView) myFragmentView.findViewById(R.id.card_recycler_view); RecyclerView.LayoutManager layoutManager = new LinearLayoutManager(getActivity().getApplicationContext()); recyclerView.setHasFixedSize(true); recyclerView.setLayoutManager(layoutManager); data = new ArrayList<Deatails>(); adapter = new DataAdapter(getActivity(), data); recyclerView.setAdapter(adapter); new Thread() { public void run() { getActivity().runOnUiThread(new Runnable() { @Override public void run() { loadJSON(); } }); } } .start(); } private void loadJSON() { if (isNetworkConnected()){ HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor(); interceptor.setLevel(HttpLoggingInterceptor.Level.BODY); OkHttpClient client = new OkHttpClient.Builder() .addInterceptor(interceptor) .retryOnConnectionFailure(true) .connectTimeout(15, TimeUnit.SECONDS) .build(); Gson gson = new GsonBuilder() .setLenient() .create(); Retrofit retrofit = new Retrofit.Builder() .baseUrl("") .client(client) .addConverterFactory(GsonConverterFactory.create(gson)) .build(); RequestInterface request = retrofit.create(RequestInterface.class); Call<JSONResponse> call = request.getJSON(); final ProgressDialog progressDialog = new ProgressDialog(getActivity()); progressDialog.show(); call.enqueue(new Callback<JSONResponse>() { @Override public void onResponse(Call<JSONResponse> call, Response<JSONResponse> response) { progressDialog.dismiss(); JSONResponse jsonResponse = response.body(); data.addAll(Arrays.asList(jsonResponse.getAndroid())); adapter.notifyDataSetChanged(); } @Override public void onFailure(Call<JSONResponse> call, Throwable t) { progressDialog.dismiss(); Log.d("Error", t.getMessage()); } }); } else { Toast.makeText(getActivity().getApplicationContext(), "Internet is disconnected", Toast.LENGTH_LONG).show();} } private boolean isNetworkConnected() { ConnectivityManager cm = (ConnectivityManager) getActivity().getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo ni = cm.getActiveNetworkInfo(); if (ni == null) { // There are no active networks. return false; } else return true; } } RequestInterface :
public interface RequestInterface { @GET("Erfan/news.php") Call<JSONResponse> getJSON(); } UPDATE (read below text and find your problem)
- most of the time, this error isn't about your json but it could be a incorrect http request such as a missing or a incorrect header, first check your request with postman to verify the servers response and servers response headers. if nothing is wrong then the error mostly came from your programmed http request, also it could because the servers response is not json (in some cases response could be html).
16 Answers
This is a well-known issue and based on this answer you could add setLenient:
Gson gson = new GsonBuilder() .setLenient() .create(); Retrofit retrofit = new Retrofit.Builder() .baseUrl(BASE_URL) .client(client) .addConverterFactory(GsonConverterFactory.create(gson)) .build(); Now, if you add this to your retrofit, it gives you another error:
com.google.gson.JsonSyntaxException: java.lang.IllegalStateException: Expected BEGIN_OBJECT but was STRING at line 1 column 1 path $ This is another well-known error you can find answer here (this error means that your server response is not well-formatted); So change server response to return something:
{ android:[ { ver:"1.5", name:"Cupcace", api:"Api Level 3" } ... ] } For better comprehension, compare your response with Github api.
Suggestion: to find out what's going on with your request/response add HttpLoggingInterceptor in your retrofit.
Based on this answer your ServiceHelper would be:
private ServiceHelper() { httpClient = new OkHttpClient.Builder(); HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor(); interceptor.setLevel(HttpLoggingInterceptor.Level.BODY); httpClient.interceptors().add(interceptor); Retrofit retrofit = createAdapter().build(); service = retrofit.create(IService.class); } Also don't forget to add:
compile 'com.squareup.okhttp3:logging-interceptor:3.3.1' 9Using Moshi:
When building your Retrofit Service add .asLenient() to your MoshiConverterFactory. You don't need a ScalarsConverter. It should look something like this:
return Retrofit.Builder() .client(okHttpClient) .baseUrl(ENDPOINT) .addConverterFactory(MoshiConverterFactory.create().asLenient()) .build() .create(UserService::class.java) Also this issue occurres when the response contenttype is not application/json. In my case response contenttype was text/html and i faced this problem. I changed it to application/json then it worked.
There was an error in understanding of return Type Just add Header and it will solve your problem
@Headers("Content-Type: application/json") 1I had same issue along with and both solved after fixing the google-services.json
1Im my case I forgot add @Headers("Accept: application/json") to Retrofit and have redirect on http page, with html in body razer json
I have faced this problem and I made research and didn't get anything, so I was trying and finally, I knew the cause of this problem. the problem on the API, make sure you have a good variable name I used $start_date and it caused the problem, so I try $startdate and it works!
as well make sure you send all parameter that declare on API, for example, $startdate = $_POST['startdate']; $enddate = $_POST['enddate'];
you have to pass this two variable from the retrofit.
as well if you use date on SQL statement, try to put it inside '' like '2017-07-24'
I hope it helps you.
In my case ; what solved my issue was.....
You may had json like this, the keys without " double quotations....
{ name: "test", phone: "2324234" }
So try any online Json Validator to make sure you have right syntax...
I solved this problem very easily after finding out this happens when you aren't outputting a proper JSON object, I simply used the echo json_encode($arrayName); instead of print_r($arrayName); With my php api.
Every programming language or at least most programming languages should have their own version of the json_encode() and json_decode() functions.
For me all attempts with Moshi and Gson failed So I solved this issue with wrapper to get String response
private class FactoryWrapper(private val factory: Factory) : Factory() { override fun responseBodyConverter( type: Type, annotations: Array<out Annotation>, retrofit: Retrofit ): Converter<ResponseBody, *>? { return if (type.rawType == String::class.java) StringConverter() else factory.responseBodyConverter(type, annotations, retrofit) } private class StringConverter : Converter<ResponseBody, String> { override fun convert(value: ResponseBody): String { return value.string() } } } // to create factory FactoryWrapper(MoshiConverterFactory.create(moshi).asLenient()) Not the best way but worked
1This issue started occurring for me all of a sudden, so I was sure, there could be some other reason. On digging deep, it was a simple issue where I used http in the BaseUrl of Retrofit instead of https. So changing it to https solved the issue for me.
Also worth checking is if there are any errors in the return type of your interface methods. I could reproduce this issue by having an unintended return type like Call<Call<ResponseBody>>
Sometimes the error is displayed because the Relative link cannot find the data in the Base URL; I experienced the same issue and counterchecking that there is no error between the relative URL and base URL worked
I solve this issue after spending around 3 hrs. I have used postman for Api testing. there was mistake in json output. Please see images for more clarification (I got this error when output preview change from enter image description here JSON to HTML) 
In case the answers from this thread doesn't help - check google-services.json file. In my case it contained a comment left from previous developer which caused the error.
Same issue after changing google-services.json
Solved:
project's build.gradle:
classpath 'com.android.tools.build:gradle:8.0.2' classpath 'com.google.gms:google-services:4.3.15' Module's(app) build.gradle:
android { namespace "com.example.myapp" // ... } dependencies { // ... implementation platform('com.google.firebase:firebase-bom:32.2.0') implementation 'com.google.firebase:firebase-analytics-ktx' // If you code in Kotlin language // implementation 'com.google.firebase:firebase-analytics' // If you code in Java language implementation 'com.google.firebase:firebase-auth' implementation 'com.google.firebase:firebase-messaging' implementation 'com.google.android.gms:play-services-auth:20.6.0' // ... }

