Hi

I am using spring social and its great (thanks Craig). I would like my users to be able to post to their wall when they initially register with Facebook. I noticed that the 'post to wall' feature works when you register locally then connect to facebook. However it doesn't work if you try to sign up using facebook and register locally afterwords. The connect interceptor is not called.

After debugging I see that in the latter case the following method is not invoked.

Code:
	public void postConnect(Connection<Facebook> connection, WebRequest request) {
I have verified this in the spring social showcase by making the following modification to signin.jsp

Code:
	<!-- FACEBOOK SIGNIN -->
	<form name="fb_signin" id="fb_signin" action="<c:url value="/signin/facebook"/>" method="POST">
        <input type="hidden" name="scope" value="publish_stream,user_photos,offline_access" />
        <label for="postToWall"><input id="postToWall" type="checkbox" checked name="postToWall" />&nbsp;Post to wall</label>
		<button type="submit"><img src="<c:url value="/resources/social/facebook/sign-in-with-facebook.png"/>" /></button>
	</form>
Is there a workaround or is this by design?? I really need to get this working as I have a big launch campaign coming up.