OpenGraphObject.Factory
This class is no longer available in the most recent version of the SDK.
A more recent version of this class is available. Check out the latest version.

Exposes helpers for creating instances of OpenGraphObject.

Extends:Object
Package:model
Constructors
OpenGraphObject.Factory()
public OpenGraphObject.Factory()
Class Methods
createForPost(String)

Creates an OpenGraphObject suitable for posting via, e.g., a native Share dialog. The object will have no properties other than a 'create_object' and 'data' property, ready to be populated.

public static OpenGraphObject createForPost(String type)
ParameterDescription
typeThe Open Graph object type for the object, or null if it will be specified later
Returns
An OpenGraphObject
createForPost(Class, String)

Creates an OpenGraphObject suitable for posting via, e.g., a native Share dialog. The object will have no properties other than a 'create_object' and 'data' property, ready to be populated.

public static OpenGraphObject createForPost(Class graphObjectClass, String type)
ParameterDescription
graphObjectClassThe OpenGraphObject-derived type to return
typeThe Open Graph object type for the object, or null if it will be specified later
Returns
An OpenGraphObject
createForPost(Class, String, String, String, String, String)

Creates an OpenGraphObject suitable for posting via, e.g., a native Share dialog. The object will have the specified properties, plus a 'create_object' and 'data' property, ready to be populated.

public static OpenGraphObject createForPost(Class graphObjectClass, String type, String title, String imageUrl, String url, String description)
ParameterDescription
graphObjectClassThe OpenGraphObject-derived type to return
typeThe Open Graph object type for the object, or null if it will be specified later
titleThe title of the object, or null if it will be specified later
imageUrlThe URL of an image associated with the object, or null
urlThe URL associated with the object, or null
descriptionThe description of the object, or null
Returns
An OpenGraphObject