I am using following code to get the game score of my facebook friend.
-(void)GetFriendScore
{
NSMutableDictionary* params = [NSMutableDictionary dicti
How we can do same in android.i have same problem in android i am using following code
request = new Request(Session.getActiveSession(), "/ "+"FB_ID"+"/scores?fields=user,application,score", param , HttpMethod.GET);
if(request!=null)
{
request.setCallback(new Request.Callback()
{
public void onCompleted(Response response)
{
if(response!=null)
{
GraphObject graphObject = response.getGraphObject();
if(graphObject==null)
{
//getting graphObject NULL
}
}
}
}
}
how to resolve this issue