Method | Description | |
---|---|---|
CreateEvent ( this facebook, Event @event, string>.IDictionary |
Create a page event using the old rest api. Create a page event using the old rest api. http://developers.facebook.com/docs/reference/rest/events.createhttp://developers.facebook.com/docs/reference/rest/events.create |
|
CreateEventForPage ( this facebook, string pageId, Event @event, string>.IDictionary |
Create event for page. The access token must be of user not of page. |
|
GetComments ( this facebook, string objectId, string>.IDictionary |
Gets list of comments for the specified facebook id (album,link,note,photo,post,status message and video). type of id | returns ----------------|-------------------------------------- Album | The comments made on this album. Link | All of the comments on this link. Note | All of the comments on this note Photo | All of the comments on this photo. Post | All of the comments on this post. Status Message | All of the comments on this message. Video | All of the comments on this video. |
|
GetComments ( this facebook, string objectId, int limit, int offset, string until, string>.IDictionary |
Gets list of comments for the specified facebook id (album,link,note,photo,post,status message and video). type of id | returns ----------------|-------------------------------------- Album | The comments made on this album. Link | All of the comments on this link. Note | All of the comments on this note Photo | All of the comments on this photo. Post | All of the comments on this post. Status Message | All of the comments on this message. Video | All of the comments on this video. |
|
GetEvent ( this facebook, string eventId ) : Event |
Gets the specified event.
|
|
GetEvent ( this facebook, string eventId, string>.IDictionary |
Gets the specified event.
|
|
GetEventAsJson ( this facebook, string eventId, string>.IDictionary |
Gets the specified event as plain json string.
|
|
GetFeeds ( this facebook, string id, string>.IDictionary |
Get the feeds for the specified facebook id (application ,event, group, page or user). type of id | returns ------------|------------------- Application| The application's wall. Event | The event's wall. Group | The group's wall. Page | The page's wall. User | The user's wall. Requires the read_stream permission to see non-public posts. |
|
GetFeeds ( this facebook, string id, int limit, int offset, string until, string>.IDictionary |
Get the feeds for the specified facebook id (application ,event, group, page or user). type of id | returns ------------|------------------- Application| The application's wall. Event | The event's wall. Group | The group's wall. Page | The page's wall. User | The user's wall. Requires the read_stream permission to see non-public posts. |
|
GetFeedsAsJson ( this facebook, string id, string>.IDictionary |
Get the feeds for the specified facebook id (application ,event, group, page or user). type of id | returns ------------|------------------------ Application| The application's wall. Event | The event's wall. Group | The group's wall. Page | The page's wall. User | The user's wall. Requires the read_stream permission to see non-public posts. |
|
GetMyPages ( this facebook ) : AccountCollection | ||
GetMyPages ( this facebook, string>.IDictionary |
||
GetMyPagesAsJsonString ( this facebook ) : string | ||
GetMyPagesAsJsonString ( this facebook, string>.IDictionary |
Get list of pages for the current Facebook User
|
|
GetPage ( this facebook, string pageId ) : FacebookSharp.Schemas.Graph.Page |
Gets the page with specified id.
|
|
GetPage ( this facebook, string pageId, string>.IDictionary |
Gets the page with specified id.
|
|
GetPageMembers ( this facebook, string pageId ) : BasicUserInfoCollection |
Gets the the list of all facebook user who are members of the specified page.
|
|
GetPageMembers ( this facebook, string pageId, string>.IDictionary |
Gets the the list of all facebook user who are members of the specified page.
|
|
GetPageMembers ( this facebook, string pageId, int limit, int offset, string until, string>.IDictionary |
||
GetPost ( this facebook, string postId ) : Post |
Gets the post with the specified id.
|
|
GetPost ( this facebook, string postId, string>.IDictionary |
Gets the specified post by id.
|
|
GetPostAsJson ( this facebook, string id, string>.IDictionary |
Gets the specified post by id.
|
|
GetPosts ( this facebook, string id, string>.IDictionary |
Get the posts for the specified facebook id (application, page or user). type of id | returns ------------|------------------------ Application| The applications's own posts. Page | The page's own posts. User | The user's own posts. Requires the read_stream permission to see non-public posts. |
|
GetPosts ( this facebook, string id, int limit, int offset, string until, string>.IDictionary |
Get the posts for the specified facebook id (application, page or user). type of id | returns ------------|------------------------ Application| The applications's own posts. Page | The page's own posts. User | The user's own posts. Requires the read_stream permission to see non-public posts. |
|
GetPostsAsJson ( this facebook, string id, string>.IDictionary |
Get the posts for the specified facebook id (application, page or user). type of id | returns ------------|------------------------ Application| The applications's own posts. Page | The page's own posts. User | The user's own posts. Requires the read_stream permission to see non-public posts. |
|
PostComment ( this facebook, string objectId, string>.IDictionary |
Writes the given comment on the given post.
|
|
PostComment ( this facebook, string objectId, string message ) : string |
Writes the given comment on the given post.
|
|
UpdateEvent ( this facebook, Event @event, string>.IDictionary |
Method | Description | |
---|---|---|
AmIAdminOfPage ( this facebook, string pageId ) : bool | ||
GetEvents ( this facebook, string userId, string eventIds, int startTime, int endTime, RsvpStatus rsvpStatus, string>.IDictionary |
||
IsAdminOfPage ( this facebook, string userId, string pageId ) : bool | ||
IsAdminOfPage ( this facebook, string userId, string pageId, bool ignoreAccessTokenException ) : bool | ||
UserLikes ( this facebook, string userId, string objectId ) : bool | ||
UserLikes ( this facebook, string userId, string objectIds ) : string[] | ||
UsersLike ( this facebook, string userIds, string objectId ) : string[] |
public static CreateEvent ( this facebook, Event @event, string>.IDictionary |
||
this | ///// The facebook. ///// | |
@event | Event | |
parameters | string>.IDictionary | ///// The parameters. ///// |
return | string |
public static CreateEventForPage ( this facebook, string pageId, Event @event, string>.IDictionary |
||
this | /// The facebook. /// | |
pageId | string | /// The page id. /// |
@event | Event | |
parameters | string>.IDictionary | /// The parameters. /// |
return | string |
public static GetComments ( this facebook, string objectId, string>.IDictionary |
||
this | The facebook. | |
objectId | string | Id of the Facebook Graph Object. |
parameters | string>.IDictionary | The parameters. |
return | CommentCollection |
public static GetComments ( this facebook, string objectId, int limit, int offset, string until, string>.IDictionary |
||
this | The facebook. | |
objectId | string | Id of the Facebook Graph Object. |
limit | int | The limit. |
offset | int | The offset. |
until | string | The until. |
parameters | string>.IDictionary | The parameters. |
return | CommentCollection |
public static GetEvent ( this facebook, string eventId ) : Event | ||
this | The facebook. | |
eventId | string | The event id. |
return | Event |
public static GetEvent ( this facebook, string eventId, string>.IDictionary |
||
this | The facebook. | |
eventId | string | The event id. |
parameters | string>.IDictionary | The parameters. |
return | Event |
public static GetEventAsJson ( this facebook, string eventId, string>.IDictionary |
||
this | The facebook. | |
eventId | string | The event id. |
parameters | string>.IDictionary | The parameters. |
return | string |
public static GetFeeds ( this facebook, string id, string>.IDictionary |
||
this | ||
id | string | |
parameters | string>.IDictionary | |
return | PostCollection |
public static GetFeeds ( this facebook, string id, int limit, int offset, string until, string>.IDictionary |
||
this | ||
id | string | |
limit | int | |
offset | int | |
until | string | |
parameters | string>.IDictionary | |
return | PostCollection |
public static GetFeedsAsJson ( this facebook, string id, string>.IDictionary |
||
this | ||
id | string | |
parameters | string>.IDictionary | |
return | string |
public static GetMyPages ( this facebook ) : AccountCollection | ||
this | ||
return | AccountCollection |
public static GetMyPages ( this facebook, string>.IDictionary |
||
this | ||
parameters | string>.IDictionary | |
return | AccountCollection |
public static GetMyPagesAsJsonString ( this facebook ) : string | ||
this | ||
return | string |
public static GetMyPagesAsJsonString ( this facebook, string>.IDictionary |
||
this | ||
parameters | string>.IDictionary | |
return | string |
public static GetPage ( this facebook, string pageId ) : FacebookSharp.Schemas.Graph.Page | ||
this | /// The facebook. /// | |
pageId | string | /// The page id. /// |
return | FacebookSharp.Schemas.Graph.Page |
public static GetPage ( this facebook, string pageId, string>.IDictionary |
||
this | /// The facebook. /// | |
pageId | string | /// The page id. /// |
parameters | string>.IDictionary | /// The parameters. /// |
return | FacebookSharp.Schemas.Graph.Page |
public static GetPageMembers ( this facebook, string pageId ) : BasicUserInfoCollection | ||
this | /// The facebook. /// | |
pageId | string | /// The page id. /// |
return | BasicUserInfoCollection |
public static GetPageMembers ( this facebook, string pageId, string>.IDictionary |
||
this | /// The facebook. /// | |
pageId | string | /// The page id. /// |
parameters | string>.IDictionary | /// The parameters. /// |
return | BasicUserInfoCollection |
public static GetPageMembers ( this facebook, string pageId, int limit, int offset, string until, string>.IDictionary |
||
this | ||
pageId | string | |
limit | int | |
offset | int | |
until | string | |
parameters | string>.IDictionary | |
return | BasicUserInfoCollection |
public static GetPost ( this facebook, string postId ) : Post | ||
this | /// The facebook. /// | |
postId | string | /// The post id. /// |
return | Post |
public static GetPost ( this facebook, string postId, string>.IDictionary |
||
this | /// The facebook. /// | |
postId | string | /// The id. /// |
parameters | string>.IDictionary | /// The parameters. /// |
return | Post |
public static GetPostAsJson ( this facebook, string id, string>.IDictionary |
||
this | /// The facebook. /// | |
id | string | /// The id. /// |
parameters | string>.IDictionary | /// The parameters. /// |
return | string |
public static GetPosts ( this facebook, string id, string>.IDictionary |
||
this | ||
id | string | |
parameters | string>.IDictionary | |
return | PostCollection |
public static GetPosts ( this facebook, string id, int limit, int offset, string until, string>.IDictionary |
||
this | ||
id | string | |
limit | int | |
offset | int | |
until | string | |
parameters | string>.IDictionary | |
return | PostCollection |
public static GetPostsAsJson ( this facebook, string id, string>.IDictionary |
||
this | ||
id | string | |
parameters | string>.IDictionary | |
return | string |
public static PostComment ( this facebook, string objectId, string>.IDictionary |
||
this | The facebook. | |
objectId | string | Id of the object. |
parameters | string>.IDictionary | The parameters. |
return | string |
public static PostComment ( this facebook, string objectId, string message ) : string | ||
this | The facebook. | |
objectId | string | Id of the object. |
message | string | Comment Message. |
return | string |
public static UpdateEvent ( this facebook, Event @event, string>.IDictionary |
||
this | ||
@event | Event | |
parameters | string>.IDictionary | |
return | bool |