我要求我需要从salesforce DB中获取数据。我的输入ID将超过1000+。因此,我想在post方法中传递这个ID列表。
GET方法失败,因为它超出了限制。
有人可以帮我吗?
答案 0 :(得分:1)
我从你的问题中假设一些(但不是全部)对SalesForce的GET请求已经有效,所以你已经拥有了与SalesForce交谈所需的大部分代码,你只需要填补如何制作一个POST请求而不是GET请求。
我希望以下代码提供一些演示。请注意,它是未经测试的,因为我目前无法访问SalesForce实例来测试它:
import org.apache.http.HttpHeaders;
import org.apache.http.NameValuePair;
import org.apache.http.client.entity.UrlEncodedFormEntity;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.ContentType;
import org.apache.http.message.BasicNameValuePair;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
import java.util.List;
public class HttpPostDemo {
public static void main(String[] args) throws Exception {
String url = ... // TODO provide this.
HttpPost httpPost = new HttpPost(url);
// Add the header Content-Type: application/x-www-form-urlencoded; charset=UTF-8.
httpPost.setHeader(HttpHeaders.CONTENT_TYPE, ContentType.APPLICATION_FORM_URLENCODED.withCharset(StandardCharsets.UTF_8).getMimeType());
// Construct the POST data.
List<NameValuePair> postData = new ArrayList<>();
postData.add(new BasicNameValuePair("example_key", "example_value"));
// add further keys and values, the one above is only an example.
// Set the POST data in the HTTP request.
httpPost.setEntity(new UrlEncodedFormEntity(postData, StandardCharsets.UTF_8));
// TODO make the request...
}
}
或许值得指出的是,实质上代码与侧边栏中显示的that in a related question差别不大。