API's to connect to facebook from windows phone? - facebook

I'm writing a windows phone app that should allows user to post status updates from within the application. Any link for the API's or help documentation that allows us to connect to facebook ?

Have a look at the Facebook C# SDK here
There is a sample you can look into about how to use the Facebook C# SDK here on GitHub in your Windows Phone App

Here is the starting point of using Facebook API
http://developers.facebook.com/
http://developers.facebook.com/docs/reference/apis/
Facebook_authentication_in_Windows_Phone_application

Related

How to integrate OAuth facebook login in Windows 8.1 Apps?

I cannot find a simple library for integrating facebook oauth with windows 8.1 apps.
Came accross facebook.net sdk but its far from compiling for v8.1.
You can build your own login flow. Facebook documents it here.
There is also a specific section in the docs on Windows Phone
You can try using the WebAUthenticatorBroker combined with sdk provided by Facebook. The below link provides a detailed explanation for the same.
https://code.msdn.microsoft.com/windowsapps/WindowsPhone-81-FaceBook-87eb2f69

Facebook SDK capabilities WP8

I am integrating facebook in WP8 app for login,Post on wall(Share),Invite friends.
Here I am using Facebook SDK for .Net
Using SDK's capabilities I am able to do login using In app browser, Post on wall(Share).
I user me/taggable_friends GRAPH API for getting friends list as me/friends returns only those friends who are using our app.
My app is not Game App so I can't use invitable friends API.
My Question is: How to invite friend?
If its not possible, Can anyone tell me the official list of possible things with facebook sdk on windows phone 8 except this.
UPDATE: I am able to send app request using this link, but not seen any request came on receiver's facebook account.
Thanks,
Replies are really appreciated.
I had similar problem and I used this method which works for me
Use a WebBrowser control and set the Url as
Uri inviteUri = new Uri("https://m.facebook.com/dialog/apprequests?app_id={app_id_goes_here}&message=YOUR_MESSAGE_HERE!&redirect_uri=https://apps.facebook.com/{app_id_goes_here}/", UriKind.RelativeOrAbsolute);
From this you can search for your other friends who are not using the game yet.
Hope this works for you too.

Invite Facebook friends to app on Windows Phone

is it possible to send an invitation (appRequest?) to a Facebook friend using Facebook C# SDK on Windows Phone 8/8.1? Best way for me would be using similar dialog as described here: https://developers.facebook.com/docs/games/requests/v2.2?locale=en_GB
I understand that the link does not describe Facebook C# SDK, but I am asking for a best way to imitate this functionality. I presume Facebook C# SDK uses Facebook app GUI for Login and maybe some more functions, so is there a way to use it even for sending an invitation?
Thanks for any help

Facebook sharing in a J2ME application? Is there any facebook API for J2ME?

I need to share a text in Facebook from my J2ME app. Is there any Facebook API available for J2ME?
Hi there are some approaches in below link
http://j2megroup.blogspot.com/2011/06/facebook-api-me-10-tutorial.html
But we preferred to do it another way. We have written some services(helpers) which connects to Facebook over php sdk. And we have used our simplified services. But this might require to have an application in Facebook side.
There are no free libraries to do this. You can use Facebook APIs to do this.

Facebook login on windows 7

I'm trying to build a phone app on the windows phone, I've decided to use Facebook as a mean of authentication, for users to login. I've been reading through the Facebook Mobile Dev page, but I couldn't see any SDK for a window phone native app.
Am I missing something? Is there another technique to login the user through Facebook?
I think you need to use OAuth in the web browser to get this to work. I used the Facebook c# sdk by following instructions on Prabir's Blog.
George