如何使用 cURl 命令
curl https://na1.salesforce.com/services/data/v20.0/query?q=SELECT+name+from+Account -H“授权:Bearer access_token”-H“X-PrettyPrint:1”
在 Java 中调用销售人员休息 Web 服务
如何使用 cURl 命令
curl https://na1.salesforce.com/services/data/v20.0/query?q=SELECT+name+from+Account -H“授权:Bearer access_token”-H“X-PrettyPrint:1”
在 Java 中调用销售人员休息 Web 服务
Java 具有URLConnection Class
与 cURL 类似的功能。
与salesforce API交互,最好使用客户端库,不要自己实现,见http://blog.palominolabs.com/2011/03/03/a-new-java-salesforce-api-图书馆/例如。
最简单的方法是下载 cURL java 包装器,如https://github.com/pjlegato/curl-java并直接在您的代码中使用 cURL。
第二种方法是使用Runtime.getRuntime().exec("crul...")
“模式”并将 curl 作为正常进程运行。