Reputation: 398
I'm trying to find the best way to connect a Salesforce account with a third party application. The idea is to import all SF account user's data to the application so all these user's will have an automatically created accounts into this app. So SF clients can give access on their users to our app with ... hopefully one/two clicks. For now I know about these two options:
Thanks.
Upvotes: 1
Views: 1205
Reputation: 398
Actually I found that oAuth login and access will work perfectly for my requirements.
PHP example can be found here:
http://developer.force.com/cookbook/recipe/interact-with-the-forcecom-rest-api-from-php
Upvotes: 0
Reputation: 8255
What platform is the other application running on? If it's web-based I would implement a webservice which Salesforce can connect to on demand (i.e. when the account owner desires) to send the account information over.
This is probably the easiest solution available, and you could trigger the code either from a trigger when a field has been set on the account (you'll need to use the @future
annotation on the method doing the callout) or you could implement a Visualforce page to handle it and display potential errors etc.
Upvotes: 1