berayan در پست ارسال درخواست به API بازار (روش جدید) یک ارسال را به عنوان پاسخ، انتخاب کرد
حل شد
باید از روش زیر استفاده میکردم
protected String doInBackground(String... arg0) {
try {
URL url = new URL("https://pardakht.cafebazaar.ir/devapi/v2/api/applications/پکیج نیم/active-subscriptions/توکن اشتراک/");
HttpURLConnection myConnection = (HttpURLConnection) url.openConnection();
myConnection.setRequestProperty("CAFEBAZAAR-PISHKHAN-API-SECRET" , "توکن برنامه");
int responseCode = myConnection.getResponseCode();
if (responseCode == HttpsURLConnection.HTTP_OK) {
BufferedReader in = new BufferedReader(new
InputStreamReader(
myConnection.getInputStream()));
StringBuffer sb = new StringBuffer("");
String line = "";
while ((line = in.readLine()) != null) {
sb.append(line);
break;
}
in.close();
return sb.toString();
} else {
return "false : " + responseCode;
}
} catch (Exception e) {
return "Exception: " + e.getMessage();
}
}