Yes, that's exactly what you need to do: Implement the view. That is if, as I am assuming, you are using ConnectController to handle the OAuth flow.
If you look at the Spring Social Showcase sample, you'll see some basic views in src/main/webapp/WEB-INF/view/connect. There are 2 views specific to LinkedIn here:
- "linkedinConnect" is the view that ConnectController will show when the user hasn't connected with LinkedIn yet and the app is navigated to /connect/linkedin.
- "linkedinConnected" is the view that ConnectController will show when the user has already connected with LinkedIn yet and the app is navigated to /connect/linkedin.
That is the default behavior of ConnectController, but it can be overridden by subclassing and overriding the connectView() and connectedView() methods. If you override those methods, then ConnectController could end up showing any view you'd like.
Craig Walls
Spring Social Project Lead