Reputation: 1298
I'd like to use the search API of salesforce. Is it possible to authenticate without a username/password, e.g. with some kind of permanent authentication token?
Upvotes: 1
Views: 605
Reputation: 29433
You can use OAuth to get an access and refresh token. But you'll have to make sure you handle token expiration stuff.
Upvotes: 2