Level 75
You probably need to use JSONParser class, http://docs.oracle.com/javaee/7/api/javax/json/stream/JsonParser.html
Have you tried a simple json_decode in php?
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
my web php; Route::get('/checkUser/{user?}', 'CheckUserController@index');
my controller; class CheckUserController extends Controller { public function index($user){
$data=$user;
return response()->json([
'contacts' => $data
]);
} }
But android error: Value <! DOCTYPE of type java.lang.String cannot be converted to JSONObject
Please or to participate in this conversation.