Hello guys I have one url for my which is connected through id, here I am using user_login_id and response is look like this..
{"interestreceived":[{"received_detail_id":2783,"interest_id":1288,"name":"Monali Patel","profile_id":"GM453843",
"image":"","cast":"Not Willing to specify","age":"24","location":"","user_status":"Accept"}]}
Here I have received_detail_id in above JSON,,
now in my next JSON Response
here I am using both ids,and in my code I am using put extra and get extra to pass values
String matchId=this.getIntent().getStringExtra("received_detail_id");
String Id=this.getIntent().getStringExtra("user_login_id");
USER URL:
USER_URL="http://mywebsitename.com/webservice/interestreceiveddetail?version=apps&received_detail_id="+matchId+"&user_login_id="+Id;
Is this right way to do?because I am not getting output