I am receiving an error saying that I must have an active access token to query information about the current user, however the Facebook object is saying that my session is valid.
The code is:
private List<Integer> getFriendsList() throws FacebookError,
MalformedURLException, JSONException, IOException {
System.out.println(fbActivity.getFacebookConnector().getFacebook()
.isSessionValid());
JSONObject json = fbActivity.getFacebookConnector().makeRequest(
"me/friends?fields=installed");
}
isSessionValid() returns true, however on the next line makeRequest() throws a FacebookError exception for using an invalid token.
Any help is most appreciated.
Many thanks