force-rest-api
force-rest-api copied to clipboard
Java library for Force.com REST API
Hi, I'm using [the example code](https://github.com/jesperfj/force-rest-api#update-sobject) to update an object. The object has an id and some properties, just like this: ``` @JsonIgnoreProperties(ignoreUnknown=true) public static class MyObject { @JsonProperty(value="Id") private...
HttpRequest's toString representation should not contain the authorisation token, because then it will be leaked when the request is logged. This is currently the case - HttpResponse.send method logs the...
Hello, I followed the instructions in the README file in order to make a call to get an Account object and I received the following error. Is this a bug...
According to https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/intro_understanding_web_server_oauth_flow.htm the `instance_url` and `id` are returned when a request is made for an access token in exchange for an authorization code (your `Auth.completeOAuthWebServerFlow` method that returns an...
Hello, I was wondering why there is no return value for http responses on some methods: `public void updateSObject(...` whereas this similar method has one (even though its a simple...
Hello, I tried with /services/data/v40.0/support/knowledgeArticles via force-rest-api v40.0 and I get this issue: [{"errorCode":"MISSING_ARGUMENT","message":"Language has to be specified in HTTP header."}] I search in Google and I know how to...
I was checking the maven repo for this api here https://mvnrepository.com/artifact/com.frejo/force-rest-api And latest version 0.0.41 is not published. Can we take your code and start use it my tweaking it...
Hi! I wasn't sure what was the best way to contact you. Is there a way to convert a lead into an account through the client? If so, would you...
This is another improvement to add full support for all features of "upsert" method in Salesforce REST api (https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_upsert.htm). This provides: 1. A notion if a record was created or...
Including feature to insert nested records. https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_composite_sobject_tree_create.htm