This sounds like an issue with either the configuration of your Yammer account or the configuration of the ProviderSignInController.
Is your Yammer application configured with the proper redirect to the Heat Clinic URL?
If so, have you followed the steps for configuring the ProviderSignInController from
http://www.broadleafcommerce.com/post/why-your-ecommerce-site-should-integrate-with-spring-social?
Here is a portion of that post:
Modify the current applicationContext-servlet.xml and add the following bean:
Code: Select all
<bean class="org.springframework.social.connect.web.ProviderSignInController">
<property name="applicationUrl" value="${application.url}" />
<property name="signUpUrl" value="/register" />
<property name="signInUrl" value="/login" />
</bean>
Modify the current applicationContext-security.xml and add the following "https" intercept
Code: Select all
<!-- Spring Social endpoints -->
<sec:intercept-url pattern="/signin/**" requires-channel="https" />
Step 3) Modify your Broadleaf Runtime Properties files
For example, my development.properties file looks like:
Code: Select all
#Spring Social
facebook.clientId=my_client_id
facebook.clientSecret=my_client_secret
twitter.consumerKey=my_consumer_key
twitter.consumerSecret=my_consumer_secret
application.url=http://127.0.0.1:8080