I know that this subject has been raised a lot, and i have read all the posts related, and still didn't got a clear answer.
So in brief, my windows store app uses a user's permission to login with their facebook account, then i get all of their friends for him to see. Now, i want him to be able to send a message to one of his friends. From all the many posts that i saw, i've encountered this famouse post: how send message facebook friend through graph api using Accessstoken Which was exectly what i wanted, but i understand that facebook is not allowing to send a message via 'send dialog' any more.. So what are my alternatives? how can i send a message to a friend? by email? by a wall post? what perrmissions do i need? I've tried it all with no success..
I'm not using any SDK, it's all from my windows store app; until now i've used URL's via graph API, for example, to retreive the logged in user's friends data:
string request = string.Format("https://graph.facebook.com/me/friends?fields=first_name,last_name,id,picture.width(180).height(180)&access_token={0}", token);
Thanks.