Я хочу интегрировать Zoho Invoice API в мое приложение Spring.Я успешно интегрировал AuthToken
часть.Сейчас я работаю с Create contact API.Но API возвращает ошибку 400.
Я использую следующий код:
public String processZohoRequest(String apiUrl,Map<String, String> params,String method, String auth) throws UnsupportedEncodingException, IOException {
URL url = new URL(apiUrl);
HttpURLConnection con = (HttpURLConnection) url.openConnection();
con.setRequestMethod(method);
if(!AppUtility.isEmpty(auth)) {
con.setRequestProperty("Authorization", auth);
con.setRequestProperty("Content-Type", "multipart/form-data");
con.setRequestProperty("X-com-zoho-invoice-organizationid", testZohoOrgId);
}
if(!AppUtility.isEmpty(params)) {
con.setDoOutput(true);
DataOutputStream out = new DataOutputStream(con.getOutputStream());
out.writeBytes(ParameterStringBuilder.getParamsString(params));
out.flush();
out.close();
}
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer content = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
content.append(inputLine);
}
in.close();
con.disconnect();
return content.toString();
}
Я использую метод sam для получения токена доступа, который работает, но когда он используется для создания контакта, он возвращает ошибку,Может кто-нибудь сказать, как я могу это исправить?
`API-URL`: https://invoice.zoho.com/api/v3/contacts
json String
: "{\" contact_name \ ": \" Jay Panjwanai \ ", \" company_name \ ": \" Ozone \ ", \"billing_address \": {\ "Внимание \": \ "Джей \", \ "адрес \": \ "$ {адрес} \", \ "город \": \ "ИНДОР \", \ "страна \": \ "Индия \", \ "телефон \": 9xxxxxxxxx}, \ "shipping_address \": {\ "внимание \": \ "Джей \", \ "адрес \": \ "$ {адрес} \",\ "city \": \ "INDORE \", \ "country \": \ "India \", \ "phone \": 9xxxxxxxxx}} "
Заранее спасибо!