Uses of Class
com.restfb.Body

Packages that use Body
Package
Description
Contains types used to interact with the Facebook Graph API.
  • Uses of Body in com.restfb

    Methods in com.restfb that return Body
    Modifier and Type
    Method
    Description
    WebRequestor.Request.getBody()
     
    static Body
    Body.withData(Object data)
    build a new body object instance with the given data as immutable inner data
    static Body
    Body.withData(Object data, JsonMapper jsonMapper)
    build a new body object instance with the given data as immutable inner data
    Methods in com.restfb with parameters of type Body
    Modifier and Type
    Method
    Description
    protected String
    DefaultFacebookClient.makeRequest(String endpoint, boolean executeAsPost, boolean executeAsDelete, List<BinaryAttachment> binaryAttachments, Body body, Parameter... parameters)
    Coordinates the process of executing the API request GET/POST and processing the response we receive from the endpoint.
    <T> T
    DefaultFacebookClient.publish(String connection, Class<T> objectType, Body body, Parameter... parameters)
     
    <T> T
    FacebookClient.publish(String connection, Class<T> objectType, Body body, Parameter... parameters)
    Performs a Graph API publish operation on the given connection and includes special body in the publish request, and mapping the result to an instance of objectType.
    void
    WebRequestor.Request.setBody(Body body)