我要求我需要从 salesforce DB 中获取数据。我的输入 ID 将超过 1000+。因此,我想在 post 方法中传递这个 ID 列表。
GET 方法失败,因为它超出了限制。
有人可以帮我吗?
我要求我需要从 salesforce DB 中获取数据。我的输入 ID 将超过 1000+。因此,我想在 post 方法中传递这个 ID 列表。
GET 方法失败,因为它超出了限制。
有人可以帮我吗?
我从您的问题中假设某些(但不是全部)对 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...
}
}
或许值得指出的是,从本质上讲,该代码与出现在侧边栏中的相关问题中的代码并没有太大区别。