|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Parameter | |
---|---|
com.restfb | Contains types used to interact with the Facebook Graph API and the Legacy Facebook REST API. |
com.restfb.batch | Support classes for RestFB's implementation of the Facebook Batch API. |
Uses of Parameter in com.restfb |
---|
Methods in com.restfb that return Parameter | |
---|---|
static Parameter |
Parameter.with(String name,
Object value)
Factory method which provides an instance with the given name and
value . |
static Parameter |
Parameter.with(String name,
Object value,
JsonMapper jsonMapper)
Factory method which provides an instance with the given name and
value , using the provided jsonMapper to turn value
into a JSON string. |
Methods in com.restfb with parameters of type Parameter | ||
---|---|---|
|
LegacyFacebookClient.execute(String method,
Class<T> resultType,
Parameter... parameters)
Executes a Facebook API method with the given parameters , mapping
the API response to a single instance of type resultType . |
|
|
DefaultLegacyFacebookClient.execute(String method,
Class<T> resultType,
Parameter... parameters)
|
|
void |
LegacyFacebookClient.execute(String method,
Parameter... parameters)
Executes a Facebook API method with the given parameters , ignoring
the response. |
|
void |
DefaultLegacyFacebookClient.execute(String method,
Parameter... parameters)
|
|
|
LegacyFacebookClient.execute(String method,
String sessionKey,
Class<T> resultType,
Parameter... parameters)
Deprecated. Use LegacyFacebookClient.execute(String, Class, Parameter...) instead.
Facebook is moving to OAuth and will stop supporting the old
session key authentication scheme soon. |
|
|
DefaultLegacyFacebookClient.execute(String method,
String sessionKey,
Class<T> resultType,
Parameter... parameters)
|
|
void |
LegacyFacebookClient.execute(String method,
String sessionKey,
Parameter... parameters)
Deprecated. Use LegacyFacebookClient.execute(String, Parameter...) instead. Facebook is
moving to OAuth and will stop supporting the old session key
authentication scheme soon. |
|
void |
DefaultLegacyFacebookClient.execute(String method,
String sessionKey,
Parameter... parameters)
|
|
|
LegacyFacebookClient.executeForList(String method,
Class<T> resultType,
Parameter... parameters)
Executes a Facebook API method with the given parameters , mapping
the API response to a List of instances of type resultType . |
|
|
DefaultLegacyFacebookClient.executeForList(String method,
Class<T> resultType,
Parameter... parameters)
|
|
|
LegacyFacebookClient.executeForList(String method,
String sessionKey,
Class<T> resultType,
Parameter... parameters)
Deprecated. Use LegacyFacebookClient.executeForList(String, Class, Parameter...)
instead. Facebook is moving to OAuth and will stop supporting
the old session key authentication scheme soon. |
|
|
DefaultLegacyFacebookClient.executeForList(String method,
String sessionKey,
Class<T> resultType,
Parameter... parameters)
|
|
|
LegacyFacebookClient.executeMultiquery(Map<String,String> queries,
Class<T> resultType,
Parameter... additionalParameters)
Executes the fql.multiquery API call, mapping the API response to a single
instance of type resultType . |
|
|
FacebookClient.executeMultiquery(Map<String,String> queries,
Class<T> objectType,
Parameter... parameters)
Executes an FQL multiquery, which allows you to batch multiple queries into a single request. |
|
|
DefaultLegacyFacebookClient.executeMultiquery(Map<String,String> queries,
Class<T> resultType,
Parameter... additionalParameters)
|
|
|
DefaultFacebookClient.executeMultiquery(Map<String,String> queries,
Class<T> objectType,
Parameter... parameters)
|
|
|
LegacyFacebookClient.executeMultiquery(Map<String,String> queries,
String sessionKey,
Class<T> resultType,
Parameter... additionalParameters)
Deprecated. Use LegacyFacebookClient.executeMultiquery(Map, Class, Parameter...)
instead. Facebook is moving to OAuth and will stop supporting
the old session key authentication scheme soon. |
|
|
DefaultLegacyFacebookClient.executeMultiquery(Map<String,String> queries,
String sessionKey,
Class<T> resultType,
Parameter... additionalParameters)
|
|
|
FacebookClient.executeQuery(String query,
Class<T> objectType,
Parameter... parameters)
Executes an FQL query, mapping the resultset to a List of instances of objectType . |
|
|
DefaultFacebookClient.executeQuery(String query,
Class<T> objectType,
Parameter... parameters)
|
|
|
FacebookClient.fetchConnection(String connection,
Class<T> connectionType,
Parameter... parameters)
Fetches a Graph API Connection type, mapping the result to an
instance of connectionType . |
|
|
DefaultFacebookClient.fetchConnection(String connection,
Class<T> connectionType,
Parameter... parameters)
|
|
|
FacebookClient.fetchObject(String object,
Class<T> objectType,
Parameter... parameters)
Fetches a single Graph API object, mapping the result to an instance of objectType . |
|
|
DefaultFacebookClient.fetchObject(String object,
Class<T> objectType,
Parameter... parameters)
|
|
|
FacebookClient.fetchObjects(List<String> ids,
Class<T> objectType,
Parameter... parameters)
Fetches multiple Graph API objects in a single call, mapping the results to an instance of objectType . |
|
|
DefaultFacebookClient.fetchObjects(List<String> ids,
Class<T> objectType,
Parameter... parameters)
|
|
|
FacebookClient.publish(String connection,
Class<T> objectType,
BinaryAttachment binaryAttachment,
Parameter... parameters)
Performs a Graph API publish operation on the given connection and includes a file -
a photo, for example - in the publish request, and mapping the result to an
instance of objectType . |
|
|
DefaultFacebookClient.publish(String connection,
Class<T> objectType,
BinaryAttachment binaryAttachment,
Parameter... parameters)
|
|
|
FacebookClient.publish(String connection,
Class<T> objectType,
Parameter... parameters)
Performs a Graph API publish operation on the given connection , mapping the result
to an instance of objectType . |
|
|
DefaultFacebookClient.publish(String connection,
Class<T> objectType,
Parameter... parameters)
|
Uses of Parameter in com.restfb.batch |
---|
Methods in com.restfb.batch with parameters of type Parameter | |
---|---|
BatchRequest.BatchRequestBuilder |
BatchRequest.BatchRequestBuilder.body(Parameter... parameters)
Sets the request body parameters for the request generated by this builder, for example Parameter.with("message", "Test status update") . |
BatchRequest.BatchRequestBuilder |
BatchRequest.BatchRequestBuilder.parameters(Parameter... parameters)
Specifies URL parameters for the request generated by this builder. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |