Package com.restfb
Interface FacebookEndpoints
-
- All Known Implementing Classes:
DefaultFacebookEndpoints
public interface FacebookEndpoints
Interface for accessing the Facebook Endpoints. Facebook provides several endpoints that are used for working with the Graph API and working with Facebook in general. This interface provides methods to access the different urls. The default implementation isDefaultFacebookEndpoints
. That class provides the access to Facebook and should be used in productive environments. This interface provides some fields with the default URLs so custom implementation can diretly use these or modify the url or provide a completly custom one. This is possible without extending our default implementation. In tests, a custom implementation can be used to mock the Facebook service. The implementing class only needs to provide urls to the mock service and the custom class is set in theDefaultFacebookClient
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
FacebookEndpoints.Endpoint
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getFacebookEndpoint()
returns the Facebook URLString
getGraphEndpoint()
returns the Facebook Graph API endpoint URLString
getGraphVideoEndpoint()
returns the Facebook Graph API Video endpoint URL
-
-
-
Method Detail
-
getFacebookEndpoint
String getFacebookEndpoint()
returns the Facebook URL- Returns:
- the Facebook URL
-
getGraphEndpoint
String getGraphEndpoint()
returns the Facebook Graph API endpoint URL- Returns:
- the Facebook Graph API endpoint URL
-
getGraphVideoEndpoint
String getGraphVideoEndpoint()
returns the Facebook Graph API Video endpoint URL- Returns:
- the Facebook Graph API Video endpoint URL
-
-