I try to use restFB in the Google App Engine, when I try to get information about the current user, I get an error message,
javax.net.ssl.SSLHandshakeException: Could not verify SSL certificate for: https:
Below is the code I'm using,
FacebookClient facebookClient = new DefaultFacebookClient();
User user = facebookClient.fetchObject("me", User.class);
What do I need to do for this to work on the development server?
Lumpy source
share