retrofit error code 404 using Multipart Post methodRetrofit 404 not found web api'Must Override a Superclass Method' Errors after importing a project into EclipseWriting my own exception classI am trying to set alarm on specific time using alarm manager but alarm initiated instantly?Unable to see multiple marker on google MapHow to POST raw whole JSON in the body of a Retrofit request?How stop markers from Blinking AndroidsetText on button from another activity androidPOST Multipart Form Data using Retrofit 2.0 including imageSaving ToggleButton state in ListView by using SharedPreferencesUsing Retrofit multipass to process my request which include audio and some string but it has been giving error 404
Crab Nebula short story from 1960s or '70s
Why does the Earth have a z-component at the start of the J2000 epoch?
Why do candidates not quit if they no longer have a realistic chance to win in the 2020 US presidents election
What are some symbols representing peasants/oppressed persons fighting back?
Would letting a multiclass character rebuild their character to be single-classed be game-breaking?
Could the crash sites of the Apollo 11 and 16 LMs be seen by the LRO?
Are there any double stars that I can actually see orbit each other?
Why hasn't the U.S. government paid war reparations to any country it attacked?
Why does the trade federation become so alarmed upon learning the ambassadors are Jedi Knights?
Doing research in academia and not liking competition
Too many spies!
Why doesn't Anakin's lightsaber explode when it's chopped in half on Geonosis?
Hot object in a vacuum
Does optical correction give a more aesthetic look to the SBI logo?
Verifying Hamiltonian Cycle solution in O(n^2), n is the length of the encoding of G
How do I define this subset using mathematical notation?
What is this old "lemon-squeezer" shaped pan
Can I capture stereo IQ signals from WebSDR?
Does Google Maps take into account hills/inclines for route times?
Why limit to revolvers?
Nested-Loop-Join: How many comparisons and how many pages-accesses?
Possible isometry groups of open manifolds
Why does Hellboy file down his horns?
How would you write do the dialogues of two characters talking in a chat room?
retrofit error code 404 using Multipart Post method
Retrofit 404 not found web api'Must Override a Superclass Method' Errors after importing a project into EclipseWriting my own exception classI am trying to set alarm on specific time using alarm manager but alarm initiated instantly?Unable to see multiple marker on google MapHow to POST raw whole JSON in the body of a Retrofit request?How stop markers from Blinking AndroidsetText on button from another activity androidPOST Multipart Form Data using Retrofit 2.0 including imageSaving ToggleButton state in ListView by using SharedPreferencesUsing Retrofit multipass to process my request which include audio and some string but it has been giving error 404
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to upload two videos and some text fields into the retrofit library
using Multipart Post method, How to Send Value using the android retrofit library
API Interface
@Headers("Accept: application/json")
@Multipart
@POST("event")
Call<ResponsePojo> submitData(@Part MultipartBody.Part video,
@Part("device_id") String device_id,
@Part("lat") String lat,
@Part("lng") String lng,
@Part("speed") String speed,
@Part("event_type") String event_type,
@Part MultipartBody.Part videolarge);
ResponsePoja model Class
public class ResponsePojo {
@SerializedName("fileData")
@Expose
private String fileData;
@SerializedName("device_id")
@Expose
private String device_id;
@SerializedName("lat")
@Expose
private String lat;
@SerializedName("lng")
@Expose
private String lng;
@SerializedName("speed")
@Expose
private String speed;
@SerializedName("event_type")
@Expose
private String event_type;
public ResponsePojo(String fileData, String device_id, String lat, String lng, String speed, String event_type)
this.fileData = fileData;
this.device_id = device_id;
this.lat = lat;
this.lng = lng;
this.speed = speed;
this.event_type = event_type;
public String getFileDatasmall()
return fileData;
public void setFileDatasmall(String fileDatasmall)
this.fileData = fileDatasmall;
public String getDevice_id()
return device_id;
public void setDevice_id(String device_id)
this.device_id = device_id;
public String getLat()
return lat;
public void setLat(String lat)
this.lat = lat;
public String getLng()
return lng;
public void setLng(String lng)
this.lng = lng;
public String getSpeed()
return speed;
public void setSpeed(String speed)
this.speed = speed;
public String getEvent_type()
return event_type;
public void setEvent_type(String event_type)
this.event_type = event_type;
Bellow Send Button Click Method ,When i click time upload all data save to server
OkHttpClient client = new OkHttpClient.Builder()
.connectTimeout(100, TimeUnit.SECONDS)
.readTimeout(100,TimeUnit.SECONDS).build();
Retrofit builder = new Retrofit.Builder()
.baseUrl(API.BaseUrl).client(client)
.addConverterFactory(GsonConverterFactory.create(new Gson())).build();
API api = builder.create(API.class);
//create file which we want to send to server.
File videoFIle = new File(String.valueOf(realUri));
RequestBody requestBody = RequestBody.create(MediaType.parse("multipart/form-data"), videoFIle);
MultipartBody.Part image = MultipartBody.Part.createFormData("fileData", videoFIle.getName(), requestBody);
Call<ResponsePojo> call = api.submitData(image, "1, ", "4.667566", "54.54448", "5457", "2",image);
call.enqueue(new Callback<ResponsePojo>()
@Override
public void onResponse(Call<ResponsePojo> call, Response<ResponsePojo> response)
ResponsePojo body = response.body();
Toast.makeText(getApplicationContext(), String.valueOf("Code "+response.message()), Toast.LENGTH_SHORT).show();
pd.dismiss();
@Override
public void onFailure(Call<ResponsePojo> call, Throwable t)
Toast.makeText(getApplicationContext(), "File "+t.toString(), Toast.LENGTH_SHORT).show();
pd.dismiss();
);
Postman send request method
java android retrofit
add a comment |
I want to upload two videos and some text fields into the retrofit library
using Multipart Post method, How to Send Value using the android retrofit library
API Interface
@Headers("Accept: application/json")
@Multipart
@POST("event")
Call<ResponsePojo> submitData(@Part MultipartBody.Part video,
@Part("device_id") String device_id,
@Part("lat") String lat,
@Part("lng") String lng,
@Part("speed") String speed,
@Part("event_type") String event_type,
@Part MultipartBody.Part videolarge);
ResponsePoja model Class
public class ResponsePojo {
@SerializedName("fileData")
@Expose
private String fileData;
@SerializedName("device_id")
@Expose
private String device_id;
@SerializedName("lat")
@Expose
private String lat;
@SerializedName("lng")
@Expose
private String lng;
@SerializedName("speed")
@Expose
private String speed;
@SerializedName("event_type")
@Expose
private String event_type;
public ResponsePojo(String fileData, String device_id, String lat, String lng, String speed, String event_type)
this.fileData = fileData;
this.device_id = device_id;
this.lat = lat;
this.lng = lng;
this.speed = speed;
this.event_type = event_type;
public String getFileDatasmall()
return fileData;
public void setFileDatasmall(String fileDatasmall)
this.fileData = fileDatasmall;
public String getDevice_id()
return device_id;
public void setDevice_id(String device_id)
this.device_id = device_id;
public String getLat()
return lat;
public void setLat(String lat)
this.lat = lat;
public String getLng()
return lng;
public void setLng(String lng)
this.lng = lng;
public String getSpeed()
return speed;
public void setSpeed(String speed)
this.speed = speed;
public String getEvent_type()
return event_type;
public void setEvent_type(String event_type)
this.event_type = event_type;
Bellow Send Button Click Method ,When i click time upload all data save to server
OkHttpClient client = new OkHttpClient.Builder()
.connectTimeout(100, TimeUnit.SECONDS)
.readTimeout(100,TimeUnit.SECONDS).build();
Retrofit builder = new Retrofit.Builder()
.baseUrl(API.BaseUrl).client(client)
.addConverterFactory(GsonConverterFactory.create(new Gson())).build();
API api = builder.create(API.class);
//create file which we want to send to server.
File videoFIle = new File(String.valueOf(realUri));
RequestBody requestBody = RequestBody.create(MediaType.parse("multipart/form-data"), videoFIle);
MultipartBody.Part image = MultipartBody.Part.createFormData("fileData", videoFIle.getName(), requestBody);
Call<ResponsePojo> call = api.submitData(image, "1, ", "4.667566", "54.54448", "5457", "2",image);
call.enqueue(new Callback<ResponsePojo>()
@Override
public void onResponse(Call<ResponsePojo> call, Response<ResponsePojo> response)
ResponsePojo body = response.body();
Toast.makeText(getApplicationContext(), String.valueOf("Code "+response.message()), Toast.LENGTH_SHORT).show();
pd.dismiss();
@Override
public void onFailure(Call<ResponsePojo> call, Throwable t)
Toast.makeText(getApplicationContext(), "File "+t.toString(), Toast.LENGTH_SHORT).show();
pd.dismiss();
);
Postman send request method
java android retrofit
Can you check this and do changes
– M D
Mar 26 at 7:01
Possible duplicate of Retrofit 404 not found web api
– nishon.tan
Mar 27 at 10:38
add a comment |
I want to upload two videos and some text fields into the retrofit library
using Multipart Post method, How to Send Value using the android retrofit library
API Interface
@Headers("Accept: application/json")
@Multipart
@POST("event")
Call<ResponsePojo> submitData(@Part MultipartBody.Part video,
@Part("device_id") String device_id,
@Part("lat") String lat,
@Part("lng") String lng,
@Part("speed") String speed,
@Part("event_type") String event_type,
@Part MultipartBody.Part videolarge);
ResponsePoja model Class
public class ResponsePojo {
@SerializedName("fileData")
@Expose
private String fileData;
@SerializedName("device_id")
@Expose
private String device_id;
@SerializedName("lat")
@Expose
private String lat;
@SerializedName("lng")
@Expose
private String lng;
@SerializedName("speed")
@Expose
private String speed;
@SerializedName("event_type")
@Expose
private String event_type;
public ResponsePojo(String fileData, String device_id, String lat, String lng, String speed, String event_type)
this.fileData = fileData;
this.device_id = device_id;
this.lat = lat;
this.lng = lng;
this.speed = speed;
this.event_type = event_type;
public String getFileDatasmall()
return fileData;
public void setFileDatasmall(String fileDatasmall)
this.fileData = fileDatasmall;
public String getDevice_id()
return device_id;
public void setDevice_id(String device_id)
this.device_id = device_id;
public String getLat()
return lat;
public void setLat(String lat)
this.lat = lat;
public String getLng()
return lng;
public void setLng(String lng)
this.lng = lng;
public String getSpeed()
return speed;
public void setSpeed(String speed)
this.speed = speed;
public String getEvent_type()
return event_type;
public void setEvent_type(String event_type)
this.event_type = event_type;
Bellow Send Button Click Method ,When i click time upload all data save to server
OkHttpClient client = new OkHttpClient.Builder()
.connectTimeout(100, TimeUnit.SECONDS)
.readTimeout(100,TimeUnit.SECONDS).build();
Retrofit builder = new Retrofit.Builder()
.baseUrl(API.BaseUrl).client(client)
.addConverterFactory(GsonConverterFactory.create(new Gson())).build();
API api = builder.create(API.class);
//create file which we want to send to server.
File videoFIle = new File(String.valueOf(realUri));
RequestBody requestBody = RequestBody.create(MediaType.parse("multipart/form-data"), videoFIle);
MultipartBody.Part image = MultipartBody.Part.createFormData("fileData", videoFIle.getName(), requestBody);
Call<ResponsePojo> call = api.submitData(image, "1, ", "4.667566", "54.54448", "5457", "2",image);
call.enqueue(new Callback<ResponsePojo>()
@Override
public void onResponse(Call<ResponsePojo> call, Response<ResponsePojo> response)
ResponsePojo body = response.body();
Toast.makeText(getApplicationContext(), String.valueOf("Code "+response.message()), Toast.LENGTH_SHORT).show();
pd.dismiss();
@Override
public void onFailure(Call<ResponsePojo> call, Throwable t)
Toast.makeText(getApplicationContext(), "File "+t.toString(), Toast.LENGTH_SHORT).show();
pd.dismiss();
);
Postman send request method
java android retrofit
I want to upload two videos and some text fields into the retrofit library
using Multipart Post method, How to Send Value using the android retrofit library
API Interface
@Headers("Accept: application/json")
@Multipart
@POST("event")
Call<ResponsePojo> submitData(@Part MultipartBody.Part video,
@Part("device_id") String device_id,
@Part("lat") String lat,
@Part("lng") String lng,
@Part("speed") String speed,
@Part("event_type") String event_type,
@Part MultipartBody.Part videolarge);
ResponsePoja model Class
public class ResponsePojo {
@SerializedName("fileData")
@Expose
private String fileData;
@SerializedName("device_id")
@Expose
private String device_id;
@SerializedName("lat")
@Expose
private String lat;
@SerializedName("lng")
@Expose
private String lng;
@SerializedName("speed")
@Expose
private String speed;
@SerializedName("event_type")
@Expose
private String event_type;
public ResponsePojo(String fileData, String device_id, String lat, String lng, String speed, String event_type)
this.fileData = fileData;
this.device_id = device_id;
this.lat = lat;
this.lng = lng;
this.speed = speed;
this.event_type = event_type;
public String getFileDatasmall()
return fileData;
public void setFileDatasmall(String fileDatasmall)
this.fileData = fileDatasmall;
public String getDevice_id()
return device_id;
public void setDevice_id(String device_id)
this.device_id = device_id;
public String getLat()
return lat;
public void setLat(String lat)
this.lat = lat;
public String getLng()
return lng;
public void setLng(String lng)
this.lng = lng;
public String getSpeed()
return speed;
public void setSpeed(String speed)
this.speed = speed;
public String getEvent_type()
return event_type;
public void setEvent_type(String event_type)
this.event_type = event_type;
Bellow Send Button Click Method ,When i click time upload all data save to server
OkHttpClient client = new OkHttpClient.Builder()
.connectTimeout(100, TimeUnit.SECONDS)
.readTimeout(100,TimeUnit.SECONDS).build();
Retrofit builder = new Retrofit.Builder()
.baseUrl(API.BaseUrl).client(client)
.addConverterFactory(GsonConverterFactory.create(new Gson())).build();
API api = builder.create(API.class);
//create file which we want to send to server.
File videoFIle = new File(String.valueOf(realUri));
RequestBody requestBody = RequestBody.create(MediaType.parse("multipart/form-data"), videoFIle);
MultipartBody.Part image = MultipartBody.Part.createFormData("fileData", videoFIle.getName(), requestBody);
Call<ResponsePojo> call = api.submitData(image, "1, ", "4.667566", "54.54448", "5457", "2",image);
call.enqueue(new Callback<ResponsePojo>()
@Override
public void onResponse(Call<ResponsePojo> call, Response<ResponsePojo> response)
ResponsePojo body = response.body();
Toast.makeText(getApplicationContext(), String.valueOf("Code "+response.message()), Toast.LENGTH_SHORT).show();
pd.dismiss();
@Override
public void onFailure(Call<ResponsePojo> call, Throwable t)
Toast.makeText(getApplicationContext(), "File "+t.toString(), Toast.LENGTH_SHORT).show();
pd.dismiss();
);
Postman send request method
java android retrofit
java android retrofit
edited Mar 26 at 6:38
tech corder
asked Mar 26 at 6:32
tech cordertech corder
42 bronze badges
42 bronze badges
Can you check this and do changes
– M D
Mar 26 at 7:01
Possible duplicate of Retrofit 404 not found web api
– nishon.tan
Mar 27 at 10:38
add a comment |
Can you check this and do changes
– M D
Mar 26 at 7:01
Possible duplicate of Retrofit 404 not found web api
– nishon.tan
Mar 27 at 10:38
Can you check this and do changes
– M D
Mar 26 at 7:01
Can you check this and do changes
– M D
Mar 26 at 7:01
Possible duplicate of Retrofit 404 not found web api
– nishon.tan
Mar 27 at 10:38
Possible duplicate of Retrofit 404 not found web api
– nishon.tan
Mar 27 at 10:38
add a comment |
3 Answers
3
active
oldest
votes
For this instance,a 404 means there is no API for this URL.
Maybe, your URL needs to be http://192.168.0.105/register/
instead of http://192.168.0.105/register
or maybe it is malformed.
Example, http://192.168.0.105//register/
add a comment |
This error basically related to the path(@Path) in some cases. so please check your request path just like @Path("/event").
According to the response code, the client was able to communicate with a given server, but the server could not find what was requested.
So, in this case, should check path and parameter what are we sending.
sry ur answer not clear to me
– tech corder
Mar 26 at 7:35
can u rearrange my code
– tech corder
Mar 26 at 7:35
add a comment |
If you are using @POST
and want to send data using @part
you need to first convert it to RequestBody
before sending it. Do the following changes
In request code
Call<ResponsePojo> submitData(@Part MultipartBody.Part video,
@Part("device_id") RequestBody device_id,...
Before calling this method you need to convert your parameter to Requestbody
RequestBody device_id = RequestBody.create(
MediaType.parse("text/plain"),
device_id);
Now use this variable as mentioned above in method call.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55351045%2fretrofit-error-code-404-using-multipart-post-method%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
For this instance,a 404 means there is no API for this URL.
Maybe, your URL needs to be http://192.168.0.105/register/
instead of http://192.168.0.105/register
or maybe it is malformed.
Example, http://192.168.0.105//register/
add a comment |
For this instance,a 404 means there is no API for this URL.
Maybe, your URL needs to be http://192.168.0.105/register/
instead of http://192.168.0.105/register
or maybe it is malformed.
Example, http://192.168.0.105//register/
add a comment |
For this instance,a 404 means there is no API for this URL.
Maybe, your URL needs to be http://192.168.0.105/register/
instead of http://192.168.0.105/register
or maybe it is malformed.
Example, http://192.168.0.105//register/
For this instance,a 404 means there is no API for this URL.
Maybe, your URL needs to be http://192.168.0.105/register/
instead of http://192.168.0.105/register
or maybe it is malformed.
Example, http://192.168.0.105//register/
answered Mar 27 at 10:37
nishon.tannishon.tan
5161 gold badge5 silver badges17 bronze badges
5161 gold badge5 silver badges17 bronze badges
add a comment |
add a comment |
This error basically related to the path(@Path) in some cases. so please check your request path just like @Path("/event").
According to the response code, the client was able to communicate with a given server, but the server could not find what was requested.
So, in this case, should check path and parameter what are we sending.
sry ur answer not clear to me
– tech corder
Mar 26 at 7:35
can u rearrange my code
– tech corder
Mar 26 at 7:35
add a comment |
This error basically related to the path(@Path) in some cases. so please check your request path just like @Path("/event").
According to the response code, the client was able to communicate with a given server, but the server could not find what was requested.
So, in this case, should check path and parameter what are we sending.
sry ur answer not clear to me
– tech corder
Mar 26 at 7:35
can u rearrange my code
– tech corder
Mar 26 at 7:35
add a comment |
This error basically related to the path(@Path) in some cases. so please check your request path just like @Path("/event").
According to the response code, the client was able to communicate with a given server, but the server could not find what was requested.
So, in this case, should check path and parameter what are we sending.
This error basically related to the path(@Path) in some cases. so please check your request path just like @Path("/event").
According to the response code, the client was able to communicate with a given server, but the server could not find what was requested.
So, in this case, should check path and parameter what are we sending.
answered Mar 26 at 6:45
rahulrahul
172 bronze badges
172 bronze badges
sry ur answer not clear to me
– tech corder
Mar 26 at 7:35
can u rearrange my code
– tech corder
Mar 26 at 7:35
add a comment |
sry ur answer not clear to me
– tech corder
Mar 26 at 7:35
can u rearrange my code
– tech corder
Mar 26 at 7:35
sry ur answer not clear to me
– tech corder
Mar 26 at 7:35
sry ur answer not clear to me
– tech corder
Mar 26 at 7:35
can u rearrange my code
– tech corder
Mar 26 at 7:35
can u rearrange my code
– tech corder
Mar 26 at 7:35
add a comment |
If you are using @POST
and want to send data using @part
you need to first convert it to RequestBody
before sending it. Do the following changes
In request code
Call<ResponsePojo> submitData(@Part MultipartBody.Part video,
@Part("device_id") RequestBody device_id,...
Before calling this method you need to convert your parameter to Requestbody
RequestBody device_id = RequestBody.create(
MediaType.parse("text/plain"),
device_id);
Now use this variable as mentioned above in method call.
add a comment |
If you are using @POST
and want to send data using @part
you need to first convert it to RequestBody
before sending it. Do the following changes
In request code
Call<ResponsePojo> submitData(@Part MultipartBody.Part video,
@Part("device_id") RequestBody device_id,...
Before calling this method you need to convert your parameter to Requestbody
RequestBody device_id = RequestBody.create(
MediaType.parse("text/plain"),
device_id);
Now use this variable as mentioned above in method call.
add a comment |
If you are using @POST
and want to send data using @part
you need to first convert it to RequestBody
before sending it. Do the following changes
In request code
Call<ResponsePojo> submitData(@Part MultipartBody.Part video,
@Part("device_id") RequestBody device_id,...
Before calling this method you need to convert your parameter to Requestbody
RequestBody device_id = RequestBody.create(
MediaType.parse("text/plain"),
device_id);
Now use this variable as mentioned above in method call.
If you are using @POST
and want to send data using @part
you need to first convert it to RequestBody
before sending it. Do the following changes
In request code
Call<ResponsePojo> submitData(@Part MultipartBody.Part video,
@Part("device_id") RequestBody device_id,...
Before calling this method you need to convert your parameter to Requestbody
RequestBody device_id = RequestBody.create(
MediaType.parse("text/plain"),
device_id);
Now use this variable as mentioned above in method call.
answered Mar 27 at 10:58
karankaran
6,4263 gold badges26 silver badges65 bronze badges
6,4263 gold badges26 silver badges65 bronze badges
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55351045%2fretrofit-error-code-404-using-multipart-post-method%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Can you check this and do changes
– M D
Mar 26 at 7:01
Possible duplicate of Retrofit 404 not found web api
– nishon.tan
Mar 27 at 10:38