How to get facebook result from javascript sdk to java
I am using plain javascript to fetch feeds from the facebook by graph apis using fb javascript sdk.开发者_C百科
However, my ultimate need is to parse the results and store it to my db via a java program.
So, how do I do that?
You can use restfb framework for acessing facebook graph api via Java
Make the request from the Java environment, this would be much safer since you don't have to post the result from your javascript to the server hence avoiding that somebody malicious tampers with your javascript result.
精彩评论