Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

A few months ago I developed an application to retrieve the counters of my insights Facebook pages. This application works perfectly with the library "Facebook C# SDK" version 5.0.40. Now I want to use the last library version 5.4.1 but my application no longer works. I do not understand why.

I use the following code :

       var fb = new FacebookClient(m_accessToken);

        fb.GetCompleted +=
            (o, e) =>
            {
                if (e.Error == null)
                {
                    dynamic result = e.GetResultData();

                    // e.UserState contains the 'p_date' object which caracterize the Query  
                    string response = result.ToString();
             Console.WriteLine(response);
                }
             };

         var query0 = string.Format("SELECT metric, value FROM insights WHERE object_id=" + p_pageId + " AND metric='" + p_counter + "' AND end_time=end_time_date('" + p_date + "') AND period=period('" + p_period + "')");
         fb.QueryAsync(new[] { query0 });

For example, if I make a request for the same facebook page Id, same counter, same day, same period

with library 5.0.40, i receive a response (Example for counter "page_fans":

[{"name":"query0","fql_result_set":[{"metric":"page_fans","value":"12018"}]}]

with library 5.4.1, I receive always an empty response for any request (any counter, any day, any page):

[{"name":"query0","fql_result_set":[]}]

Does anyone can help me and tell me what I need to change in my code to allow my application runs with recent versions of the "Facebook C# SDK" library.

Best regards

Christian

share|improve this question
1  
could u file it as a new issue in codeplex. – prabir Dec 22 '11 at 16:52

1 Answer

As a temporary solution until this bug is fixed you can use value in seconds for end_time and one of "lifetime, day, week, days_28, month" for period...

share|improve this answer
Bug is still not fixed but thanks to your solution it works for me. – Gremo Feb 18 '12 at 3:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.