まず、ログインしている場合は、以下を使用してプロファイルを取得するリクエストを送信できます。
AsyncFacebookRunner asyncFacebookRunner = new AsyncFacebookRunner(facebook);
asyncFacebookRunner.request("me", new fbRequestListener());
次に、リスナーで、応答のユーザー名フィールドを取得できます。
public class fbRequestListener implements RequestListener() {
@Override
public void onComplete(String response, Object state) {
/**Parse the json response here to get the username
Then, append it to the url as "http://www.facebook.com/" +username*/
}
/**don't forget to override other methods*/
}
それが役立つことを願っています。:)