I want to be able to access properties from a JSON string within my Java action method. The string is available by simply saying myJsonString = object.getJson()
myJsonString = object.getJson()
If, by any change, you are in an application which already uses http://restfb.com/ then you can do:
import com.restfb.json.JsonObject; ... JsonObject json = new JsonObject(jsonString); json.get("title");
etc.