我使用以下链接下载了一个Spring Social facebook应用程序:https://github.com/spring-guides/gs-accessing-facebook
我使用以下链接下载了Spring Social Twitter应用程序:
https://github.com/spring-guides/gs-accessing-twitter
我对ConnectController
感到困惑。它使用Spring Boot来部署应用程序,但是在控制台中:
Mapped "{[/connect/{providerId}],methods=[POST]}" onto public org.springframework.web.servlet.view.RedirectView org.springframework.social.connect.web.ConnectController.connect(java.lang.String,org.springframework.web.context.request.NativeWebRequest)
我试图通过此应用程序访问用户的Facebook数据。所以当我用以下方式运行应用程序时:
http://localhost:8080/connect/twitter
然后点击“连接到Twitter”。地址变为:
http://localhost:8080/connect/twitter;jsessionid=5D2034AFF69C8A5F8F1A76B69D091BF1
它保留在同一页面上,并且不会转到下一页,即
hello.html
我该怎么办?