ユーザーが作成したグループに投稿する必要がある Android アプリケーションを開発しています。
Bundle params = new Bundle();
params.putString("link","www.google.com");
params.putString("message","Group Message");
try {
String res = fb.request(GROUP_ID+"/feed",params);
Log.w("Response",""+res);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
また、次の権限を使用しています。
public static final String[] permissions = {"user_photos","friends_groups","read_stream","user_groups","publish_stream"};
しかし、これを実行すると、例外は発生せず、グループの壁に投稿されません。
@Mentions を使用して作成しようとしたとき@[user_id:name]
に、ハイパーリンクを取得することさえできません。
上記の2つの問題を解決するのを手伝ってくれる人はいますか。
ありがとう。