Is field extension supported in the Android Android SDK? where can i find an example?
There is excellent documentation on extending the field for Graph APi. However, I can not find the documentation for android-sdk-3. Is it supported?
The problem starts when you want to do the following:
/me?fields=name,birthday,photos.limit(10).fields(id, picture)
In Android android SDK SDK, it seems that adding parameters as a string does not work
eg.
request = Request.newGraphPathRequest(session, "me/friendlists", new Request.Callback() {
public void onCompleted(Response response) ...
}
Bundle parameters = new Bundle();
parameters.putString("fields","members.fields(id)", "list_type");
request.setParameters(parameters);
source
share