The connection flow is useful for the common case where the app does not yet have the access token and needs to engage the user to obtain it. But if you already have it, then you can skip all of that and go straight to constructing the API bindings for yourself.
For example, if you already have a user's access token for Facebook, you'll just need to use it when constructing a FacebookTemplate:
Code:
Facebook facebook = new FacebookTemplate(accessToken);
Is that what you were looking for?
Craig Walls
Spring Social Project Lead