Prabir Shrestha
Prabir Shrestha
I now use [vim-lsp](https://github.com/prabirshrestha/vim-lsp) with [typescript-language-server](https://github.com/prabirshrestha/typescript-language-server) which supports this features.
var fb = new Facebook("access_token"); var feeds = fb.GetFeeds("me",null); var posts = fb.GetPosts("me",null); make sure u add "using Facebook.Extensions;" too
try ``` foreach(var p in posts.Data){ } ``` and incase you haven't been aware the mergin of FacebookSharp with Facebook C# SDK, I strongly recommend you to read "The State...
and i you want to get without expiration time, make sure you pass the extended permissions as "offline_access"
extended permissions is specified in readme.md file. https://github.com/prabirshrestha/FacebookSharp/blob/master/README.md here is an extract from it. You can specify extened permissions by specifying it in the FacebookSettings. fbSettings.DefaultApplicationPermissions = new[] { "publish_stream","create_event"...
there are 3 types of id's in facebook. 1. "12345" 2. "12345_6789" 3. "me" me is a special type of id, which represents the user/page who is using the access...
are you sure you have "publish_stream" access also? you can see more of these extended permissions from http://developers.facebook.com/docs/authentication/permissions
i just tried with the winforms sample and it works. in btnLogin_Click i changed to the follwing code: FacebookSettings fbSettings = new FacebookSettings { ApplicationKey = txtApiKey.Text, DefaultApplicationPermissions = new[]...
there are some overloads to PostToWall. the first parameter is the message: "message to my own wall" but the second parameter is not expiration parameter, it is additional parameters which...
that constructor was actually written to make it compatible with the original Android SDK written in Java which i ported from. even other methods such as SetAccessExpiresIn for now could...