When I create a post (status update) on my own wall via facebook web site I can specify location.
How can I specify location for new post via facebook graph API?
Here is code that I use to post status updates on user’s wall.
FacebookClient fbClient = new FacebookClient(accessToken);
parameters = new Dictionary<string, object> { { "message", "hi! this is my status message" }};
fbClient.Post("me/feed", parameters);
Here is working example: