I'm able to query taggable friend from facebook but the photo url return is too small. Is there a way to get a larger photo?
I tried everything I could think of but still won't work.
Request request = new Request(session,"/me/taggable_friends,",null,HttpMethod.GET);
Bundle params = new Bundle();
params.putInt("width", 100);
params.putInt("height", 100);
request.setParameters(params);
also tried something like this
Request request = new Request(session,"/me/taggable_friends?height=100,width=100",null,HttpMethod.GET);
Please tell me if you know the solution, appreciate it.
0 comments:
Post a Comment