Ejemplo n.º 1
0
        private IHttpRequest GetPublishRequest(Post post, Privacy privacy = null)
        {
            if (post == null) throw new ArgumentNullException("post");

            var request = this.Post("me/feed")
                .Body("message", post.Message)
                .Body("link", post.Link)
                .Body("picture", post.Picture)
                .Body("name", post.Title)
                .Body("caption", post.Caption)
                .Body("description", post.Description);

            if (privacy != null)
            {
                if (privacy.Type.HasValue)
                {
                    if (privacy.Type.Value == PrivacyType.Custom)
                    {
                        request.Body("privacy", JsonConvert.SerializeObject(new
                        {
                            value = privacy.Type.Value.ToDescription(),
                            allow =
                                privacy.Allow != null && privacy.Allow.Length > 0
                                    ? privacy.Allow.ToConcatenatedString(",")
                                    : null,
                            deny =
                                privacy.Deny != null && privacy.Deny.Length > 0
                                    ? privacy.Deny.ToConcatenatedString(",")
                                    : null
                        }, Formatting.None));
                    }
                    else
                    {
                        request.Body("privacy", JsonConvert.SerializeObject(new
                        {
                            value = privacy.Type.Value.ToDescription(),
                        }, Formatting.None));
                    }
                }
            }


            return request;
        }
Ejemplo n.º 2
0
 public async Task<IHttpResponse<string>> PublishAsync(Post post, Privacy privacy = null)
 {
     return await this.GetPublishRequest(post, privacy).ResponseAsync<string>();
 }
Ejemplo n.º 3
0
 public IHttpResponse<string> Publish(Post post, Privacy privacy = null)
 {
     return this.GetPublishRequest(post, privacy).Response<string>();
 }