A utility class for sharing through the graph API. Using this class requires an access token that has been granted the "publish_actions" permission.
FBSDKShareAPI network requests are scheduled on the current run loop in the default run loop mode (like NSURLConnection). If you want to use FBSDKShareAPI in a background thread, you must manage the run loop yourself.
Conforms to: | FBSDKSharing |
Superclass: | NSObject |
Declared in: | FBSDKShareAPI.h |
accessToken
The access token used when performing a share. The access token must have the "publish_actions" permission granted.
@property (nonatomic,
strong) FBSDKAccessToken *accessToken;
Defaults to [FBSDKAccessToken currentAccessToken]. Setting this to nil will revert the access token to [FBSDKAccessToken currentAccessToken].
FBSDKShareAPI.h
graphNode
The graph node to which content should be shared.
@property (nonatomic,
copy) NSString *graphNode;
FBSDKShareAPI.h
message
The message the person has provided through the custom dialog that will accompany the share content.
@property (nonatomic,
copy) NSString *message;
FBSDKShareAPI.h
createOpenGraphObject:
Creates an User Owned Open Graph object without an action.
Parameter | Description |
---|---|
openGraphObject | The open graph object to create. |
- (BOOL)
createOpenGraphObject:(FBSDKShareOpenGraphObject *)openGraphObject;
Use this method to create an object alone, when an action is not going to be posted with the object. If the object will be used within an action, just put the object in the action and share that as the shareContent and the object will be created in the process. The delegate will be messaged with the results. Also see https://developers.facebook.com/docs/sharing/opengraph/object-api#objectapi-creatinguser
FBSDKShareAPI.h