Prabir Shrestha

Results 267 comments of Prabir Shrestha

make sure you have the right extended permissions. you can read about the details on http://developers.facebook.com/docs/authentication/permissions if u want to see how to get those permissions, i highly recommend you...

currently im quite busy merging FacebookSharp with Facebook C# SDK. You can read the details about the merging at http://ntotten.com/2010/11/the-state-of-net-facebook-development/ you can also see the discussion on Facebook C# sdk...

thanks for the suggestion. but there is one problem with your solution. every time i post as a page. it would need to make one extra http request that is...

Just ran into this same issue. I got the basic auth working, but now how do I get the current user from file/directory node so I can filter out the...

@JedWatson any update on this? Would like to have this in so we don't need to patch it.

to differentiate graph api and old rest api, the methods will be similar to graph api methods, execpt with different method name as below. [Obsolete("Use the graph api Get() if...

partial old rest api implemented for synchronous methods. [Obsolete("Use the graph api Get() if possible.")] public string GetUsingRestApi(string methodName, IDictionary parameters){} var result = fb.GetUsingRestApi("friends.get"); sync FQL also implemented var...

I was able to load sqlite-vss dynamically using sqlx. I personally want to statically compile it and filed a feature request for sqlx since it doesn't support it. https://github.com/launchbadge/sqlx/issues/3147#issuecomment-2016608238. They...

codebetter.com gives you free teamcity hosting at http://teamcity.codebetter.com/ http://codebetter.com/jameskovacs/2009/02/24/announcing-teamcity-codebetter-com/ It is usually for .NET projects not sure if they will give it to you guys. But could try it out.

+1. Hit the same issue and was scratching my head on why the query wasn't working as expected. In my case I was refactoring the variable name. It was able...