コード例 #1
0
 /// <summary>
 /// Gets a list of posts of the user or page with the specified <code>identifier</code>.
 /// </summary>
 /// <param name="identifier">The identifier (ID or name) of the page or user.</param>
 /// <param name="options">The options for the call to the API.</param>
 public FacebookPostsResponse GetPosts(string identifier, FacebookPostsOptions options) {
     return FacebookPostsResponse.ParseResponse(Raw.GetPosts(identifier, options));
 }
コード例 #2
0
 /// <summary>
 /// Gets a list of posts of the user or page with the specified <code>identifier</code>.
 /// </summary>
 /// <param name="identifier">The identifier (ID or name) of the page or user.</param>
 /// <param name="options">The options for the call to the API.</param>
 public SocialHttpResponse GetPosts(string identifier, FacebookPostsOptions options)
 {
     return(Client.DoAuthenticatedGetRequest("/" + identifier + "/posts", options));
 }
コード例 #3
0
 /// <summary>
 /// Gets a list of posts of the user or page with the specified <code>identifier</code>.
 /// </summary>
 /// <param name="identifier">The identifier (ID or name) of the page or user.</param>
 /// <param name="options">The options for the call to the API.</param>
 public FacebookPostsResponse GetPosts(string identifier, FacebookPostsOptions options)
 {
     return(FacebookPostsResponse.ParseResponse(Raw.GetPosts(identifier, options)));
 }
コード例 #4
0
 public SocialHttpResponse GetPosts(string identifier, FacebookPostsOptions options) {
     return Client.DoAuthenticatedGetRequest("/" + identifier + "/posts", options);
 }