Esempio n. 1
0
        public async Task <IList <FacebookPost> > GetPosts(string pageId)
        {
            var response = await RequestAsync <FacebookPostsResponse>(FacebookUriCreator.GetPageFeedUri(pageId));

            return(response.Data);
        }
Esempio n. 2
0
        public async Task <IList <AttachmentData> > GetPostAttachments(string postId)
        {
            var response = await RequestAsync <AttachmentResponse>(FacebookUriCreator.GetPostAttachmentsUri(postId));

            return(response.Data);
        }