FBOpenGraphAction
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.

The FBOpenGraphAction protocol is the base protocol for use in posting and retrieving Open Graph actions. It inherits from the FBGraphObject protocol; you may derive custome protocols from FBOpenGraphAction in order implement typed access to your application's custom actions.

Discussion:

Represents an Open Graph custom action, to be used directly, or from which to derive custom action protocols with custom properties.

Extends Protocol:FBGraphObject
Declared in:FBOpenGraphAction.h
Properties
application

Typed access to action's application

@property (retain, nonatomic) id<FBGraphObject> application;
Declared In: FBOpenGraphAction.h
comments

Typed access to action's comments

@property (retain, nonatomic) NSArray *comments;
Declared In: FBOpenGraphAction.h
created_time

Typed access to action's creation time

@property (retain, nonatomic) NSString *created_time;
Declared In: FBOpenGraphAction.h
end_time

Typed access to action's end time

@property (retain, nonatomic) NSString *end_time;
Declared In: FBOpenGraphAction.h
expires_time

Typed access to action's expiration time

@property (retain, nonatomic) NSString *expires_time;
Declared In: FBOpenGraphAction.h
from

Typed access to action's from-user

@property (retain, nonatomic) id<FBGraphUser> from;
Declared In: FBOpenGraphAction.h
id

Use objectID instead

@property (retain, nonatomic) NSString *id __attribute__ ((deprecated("use objectID instead"
Declared In: FBOpenGraphAction.h
image

Typed access to action's image(s)

@property (retain, nonatomic) id image;
Declared In: FBOpenGraphAction.h
likes

Typed access to action's likes

@property (retain, nonatomic) NSArray *likes;
Declared In: FBOpenGraphAction.h
message

Typed access to action's user message

@property (retain, nonatomic) NSString *message;
Declared In: FBOpenGraphAction.h
objectID

Typed access to the action's ID.

@property (retain, nonatomic) NSString *objectID;
Discussion:

Note this typically refers to the "id" field of the graph object (i.e., equivalent to [self objectForKey:@"id"]) but is differently named to avoid conflicting with Apple's non-public selectors.

Declared In: FBOpenGraphAction.h
place

Typed access to action's place

@property (retain, nonatomic) id<FBGraphPlace> place;
Declared In: FBOpenGraphAction.h
publish_time

Typed access to action's publication time

@property (retain, nonatomic) NSString *publish_time;
Declared In: FBOpenGraphAction.h
ref

Typed access to action's ref

@property (retain, nonatomic) NSString *ref;
Declared In: FBOpenGraphAction.h
start_time

Typed access to action's start time

@property (retain, nonatomic) NSString *start_time;
Declared In: FBOpenGraphAction.h
tags

Typed access to action's tags

@property (retain, nonatomic) NSArray *tags;
Declared In: FBOpenGraphAction.h