I want to send information from our webapp (using Java and Spring) to the Salesforce REST APIs. I'm looking for an up-to-date example of how to use Spring Security to authenticate with OAuth to the Salesforce APIs. I just don't seem to be able to find many straightforward, standard configurations on the web for this.
I've been Googling for the past two days and the best thing I have found is this:
https://github.com/jesperfj/force-rest-api
I have gotten it up and running and it works with the account I am using. The problem is it's two years old. I'd much rather use something more recent.
What method are people using right now to connect to Salesforce's REST APIs using Java and Spring Security? A very simple example for my very simple self would be greatly appreciated.
Thanks.