force-rest-api
force-rest-api copied to clipboard
Java library for Force.com REST API
I want to implement the search function, so I wrote a little code for this. #91 Cloud you please review it, and merge to master branch? If have any concern,...
There are some HTTP headers that can be passed when creating objects in salesforce. Ref [Assignment Rule Header](https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/headers_autoassign.htm) for one such header. Currently [ForceAPI#createSObject](https://github.com/jesperfj/force-rest-api/blob/4afb1034554c900a317481b041da1c7ca9c1e911/src/main/java/com/force/api/ForceApi.java#L200) does not accept any of these...
I use this library in an application with a proxy and it is not working. Even using the following property in my Java code. System.setProperty ("http.proxyHost", "..."); System.setProperty ("http.proxyPort", "...");...
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...
Links to Salesforce OAuth flow redirect to SSO Login. Use the Article View link instead, so a login isn't required.
I saw in the wiki, there have one Spec include the search function, but in code didn't found this.
Is there any way to upload files like is shown in: https://developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_sobject_insert_update_blob.htm Any plans to add this in the future?
Currently, if we Query the Sobjects, the size of the result is 2000 which is the default batch size. However, we can change this batch by using header as mentioned...
In the http client, follow redirects is turned on: ```conn.setInstanceFollowRedirects(true);``` This, however has no effect, since later in the file, every response code not in `code < 300 && code...
The fields of the sobject response were missing the scale attribute.