kikeseiya

Results 4 comments of kikeseiya

Hi, doesn't work because facebook 0.19 only works with Grails 3.x and Spring-Security-Core plugin 3.x. Mi application work with Grails 2.4.4 and Spring Security Source 2.0 :(

I modified the code with the new facebook format and it works.

`FacebookAccessToken requestAccessToken(String authUrl) { try { URL url = new URL(authUrl) String response = url.readLines().first() println "AccessToken response: $response" println response.split(',') Map data = [:] int i = 0 response.split(',').each...