forcex icon indicating copy to clipboard operation
forcex copied to clipboard

Elixir library for the Force.com / Salesforce / SFDC REST API

Results 13 forcex issues
Sort by recently updated
recently updated
newest added

In order to remain compatible with newer (as of about 1.4.0) versions of HTTPoison, update override functions in Forcex.Api.Http and in Forcex.Bulk. These functions now treat headers as a keyword...

[Poison](https://github.com/devinus/poison) has gone several months without a merge or update, and newer projects appear to prefer [Jason](https://github.com/michalmuskala/jason) for performance reasons. Since forcex only uses Poison in 3 or 4 locations,...

I just compiled my project to include forcex and got the following warning: warning: function process_response/1 required by behaviour HTTPoison.Base was implemented as "defp" but should have been "def" (in...

Running `mix dialyzer` returns a number of errors in Forcex.Api.Http and Forcex.Bulk around the override functions for `process_response/1`. HTTPoison changed the signature for that function several years ago, such that...

v`0.8.3` to include PR #46

@jeffweiss thanks for the package. I didn't see options to specify custom endpoint (on compile-time) and also wanted to compile only necessary modules because we have several Salesforce object but...

Add json content-type on request, otherwise I got error from Salesforce

Enables commands such as: ``` elixir resp = Forcex.post("/services/data/v20.0/sobjects/Case/", %{ "Subject" => "API TEST 2", "Priority" => "High", "Origin" => "Web"}, client) ``` Looking to also implement a helper function...

Attempted `client = Forcex.Client.login |> Forcex.Client.locate_services ` But received the following error: > > 19:06:57.558 [debug] conf=%{client_id: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", client_secret: "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", password: "XXXXXXXXXXXXXXXXXX", security_token: "XXXXXXXXXXXXXXXXXX", username: "[email protected]"} > ** (FunctionClauseError) no...

:wave: For the time being, I'm not able to mitigate the following error, and I hope someone will be able to help me. - I added lines similar to the...