-
Notifications
You must be signed in to change notification settings - Fork 61
Diego Giacomelli edited this page Dec 21, 2013
·
8 revisions
Q. Does SalesforceSharp support operations like Create, Update, Delete and query against an alternative/custom end-point?
Yes, it does. Take a look on this explanation: https://github.com/giacomelli/SalesforceSharp/pull/1#issuecomment-29559620
A. If you are passing all need information to IAuthenticationFlow's implementation, maybe you are point to wrong end-point, see below:
- Sandbox end-point: https://test.salesforce.com/services/oauth2/token
- This end-point is available only for accounts that have purchased a sandbox. If you are using a Developer Edition Account you don't have access to this end-point, because the developer edition account can't be upgraded to production and should use the production end-point.
- Production end-point: https://login.salesforce.com/services/oauth2/token
- This end-point is used for production or in case of Developer Edition Account has the same meaning of Sandbox end-point.
See more in http://wiki.developerforce.com/page/An_Introduction_to_Environments.
A. Log in your Salesforce account and go to Setup > Build > Create > Apps.
Edit or create your app in "Connected Apps" section.
A. Log in your Salesforce account and go to [your name] > My settings > Personal > Reset My Security Token.
Remenber: if your IP is not in the whitelist, you'll need to append you API security token to the password when use UsernamePasswordAuthenticationWorkflow.