2

I'm trying to implement a feature into a rails app where a user can enter a "referral id" (a custom field in salesforce) and the app will retrieve the status of their referral. I've been trying to set up the REST API Oauth2 authentication for it but I can't figure out how to run my query against salesforce.

wldcordeiro
  • 123
  • 1
  • 9

1 Answers1

1

I would recommend restforce for querying a Salesforce API. It's simple to setup and provides OAuth token authentication.

https://github.com/ejholmes/restforce

Ken
  • 7,847
  • 1
  • 21
  • 20
  • I ended up using `restforce` at first I tried `databasedotcom` but it was far too complex for what I was doing. – wldcordeiro May 08 '14 at 23:02