ShareApi
يتوفر إصدار أحدث لهذه الفئة. يرجى التحقق أحدث إصدار.

Provides an interface for sharing through the graph API. Using this class requires an access token in AccessToken.currentAccessToken that has been granted the "publish_actions" permission.

الإضافات:Object
الحزمة:share
أدوات الإنشاء
ShareApi(ShareContent)

Constructs a new instance.

public ShareApi(ShareContent shareContent)
المعلمةالوصف
shareContentThe content to share.
طرق الفئات
share(ShareContent, FacebookCallback)

Convenience method to share a piece of content.

public static void share(ShareContent shareContent, FacebookCallback callback)
المعلمةالوصف
shareContentThe content to share.
callbackThe callback to call once the share is complete.
طرق المثيلات
getMessage()

Returns the message the person has provided through the custom dialog that will accompany the share content.

public String getMessage()
Returns
The message.
setMessage(String)

Sets the message the person has provided through the custom dialog that will accompany the share content.

public void setMessage(String message)
المعلمةالوصف
messageThe message.
getGraphNode()

Returns the graph node to share to.

public String getGraphNode()
Returns
The graph node.
setGraphNode(String)

Sets the graph node to share to (this can be a user id, event id, page id, group id, album id, etc).

public void setGraphNode(String graphNode)
المعلمةالوصف
graphNodeThe graph node to share to.
getShareContent()

Returns the content to be shared.

public ShareContent getShareContent()
Returns
The content to be shared.
canShare()

Returns true if the content can be shared. Warns if the access token is missing the publish_actions permission. Doesn't fail when this permission is missing, because the app could have been granted that permission in another installation.

public boolean canShare()
Returns
True if the content can be shared.
share(FacebookCallback)

Share the content.

public void share(FacebookCallback callback)
المعلمةالوصف
callbackThe callback to call once the share is complete.