public StatisticsBuilder(FacebookQuerier querier)
 {
     mQuerier = querier;
     mHtmlBuilder = new Html(new StringBuilder());
     mTasks = new List<Action<StringBuilder>>()
         {
             LinksCount,
             TotalAndDifferentUsersLikes,
             Last,
             First,
             MostPublishedSites,
             TopUsersThatLiked,
             MostLikedLink
         };
 }
Example #2
0
        protected void Page_Load(object sender, EventArgs e)
        {
            GridView1.PageIndexChanging += GridView1_PageIndexChanging;

            string prefix = ConfigurationManager.AppSettings["mode"];
            string mRedirectUri = ConfigurationManager.AppSettings[prefix + "_redirectUri"];
            string clientId = ConfigurationManager.AppSettings[prefix + "_clientId"];
            string clientSecret = ConfigurationManager.AppSettings[prefix + "_clientSecret"];

            FacebookAuthentication auth = new FacebookAuthentication(clientId, clientSecret, mRedirectUri);
            string accessToken = auth.Login(Request.Params["code"]);
            //string accessToken = auth.Login("AQCHwpz8JfD6pKWoE7BpKFI9PE0PBOR4ofhgZLH4jT9fRbozX_dnle-VqMIWwNaiB5HmQag_wzSRKXyOFyUMdAy48YP7kyoGjj9Uf8e2qpwe2mHn4gl1aResQ10ZgEJY9eon530AMSYG5O9W8O4W9tARsZi0AjY8KGZhmDOM9TcOkksDwaLlgMs5tcdBX501aTPRQMtl7X1ccXrC5n6hDaKv");
            //string accessToken = auth.Login("AQA60liWXgCNUH0CiWCw7M_-xgyU08eR2EEVQXxPpYNfVBCl00MfTJxXRf0UrDyliUCI0QGlzUPI8IMIK7pMrp67CVJfKieHBUDNQWOj6EvYhiQdNr1bEl--BGVfPIOJY9cnLdffzgFR7f4hVGKLQM5VpGbGrSCOBqzXhEDk4BQ2WBx_4H8pOh_vWEi09RZHMknDA_TdmP629-h4_4Iit-ve");
            //string accessToken = auth.Login("AQCPDTuX1fnhA0-QY3tYjQ1UlvEs45m-0ppKfSN_5iupt-kj8nVF_hHkrQsnLhV9bnzTBfoe8V0ceC0Lxfi_O72ZzxhZPFKCVAVE3vQJE5saM2cWeZBPlc9znQPsJyiciOLMTLDO9TvtbhCLwl7lcaz5W2BMkSj39Ohp7vjIEhSTCbuyorfnO_yAVE1__zy0Y_mwExtS80Fg3H8U4HQ51pH9");
            mQuerier = new FacebookQuerier(accessToken);

            if (ViewState["users"] == null)
            {
                var friends = mQuerier.FriendsList();
                ViewState.Add("users", friends);
            }
            else
            {
                mQuerier.Friends = (Dictionary<string,string>)ViewState["users"];
            }

            if (ViewState["dataSource"] == null)
            {
                var links = mQuerier.Links();

                ViewState.Add("dataSource", links);
                ViewState.Add("currentDataSource", links);
                BindGrid(links, 0);
            }
            else
            {
                mQuerier.LinksSource = (List<ExtendedLink>)ViewState["dataSource"];
            }
        }