さて、これは私の取得です
public GraphResponse Get(String query,Bundle parameters)
{
final GraphResponse[] respuesta = new GraphResponse[1];
/* make the API call */
new GraphRequest(
AccessToken.getCurrentAccessToken(),
query,
parameters,
HttpMethod.GET,
new GraphRequest.Callback() {
public void onCompleted(GraphResponse response) {
/* handle the result */
respuesta[0] =response;
}
}
).executeAndWait();
return respuesta[0];
}
これは、クエリでme
試したme/groups
クエリで問題なく動作します。ユーザーがメンバーであるすべてのグループを取得しようとすると、取得しました
{
"data": [
]
}
これはエクスプローラーでも発生します
https://developers.facebook.com/tools/explorer/
この最後に、私はすべての許可と特別な許可を選択しましたが、同じ答えを得ました。
次に、私の質問は、V2.5でこのリストを取得する方法がない場合、どうすれば(バージョン2.5を引き続き使用して)このクエリのバージョンを2.3に「変更」できますか?
このクエリを実行しようとしまし /v2.3/me/groups
たが、空白の回答が得られました。
私のアプリfacebookは「今日」に作成されました