Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Windows Phone 8 is a version of Windows Phone (Oct 29, 2012 - present), succeeding Windows Phone 7.5 and includes many new featuresets.

learn more… | top users | synonyms

0
votes
1answer
19 views

Facebook login page is mirrored when in RTL

I've set my WP8 app to be RTL (right to left) and than used the Facebook c# SDK for WP8. This is my relevant Facebook c# code: session = await FacebookSessionClient.LoginAsync(); Now the problem is ...
4
votes
1answer
41 views

could not install package Facebook 6.4.2

I'm trying to install facebook C# sdk from NuGet Console into my windows phone 8 app, .NET framework 4.0 But it's giving an error! Details is give below : PM> Install-Package Facebook Successfully ...
0
votes
1answer
58 views

Facebook Authentication in Background - C# sdk

I am developing a windows phone app using facebook c# sdk. I created a login page to authenticate the user and it also working well. But my problem is, next time when the user open the app, it should ...
0
votes
1answer
298 views

windows phone 8 share content via Email,Facebook,and Twitter

i am developing a windows phone 8 application where i want to share all the data in that page via email, face-book and Twitter. In that page i have some image and description and also some other ...
0
votes
1answer
73 views

DirectoryNotFoundException - while uploading photos to facebook

I am developing a windows phone app using facebook c# sdk. I am having a problem uploading a photo to a facebook wall. The exception occurred on the line "var imageStream = File.OpenRead(imagepath);". ...
0
votes
0answers
57 views

Adding contact to WP8 with Facebook/Twitter infos

Let's say that I have some infos about someone and I want to add them to my contacts using my app. The infos may be: Name Surname Email Facebook Name (and/or Facebook user ID) Twitter Name Now, ...
1
vote
1answer
111 views

I can't do facebook login with windows 8 mobile application

I am developing a windows 8 phone application with c# and I have to use facebook to login, currently I am use a service to connect to the database. I have the AppID and App secret key. but It failing ...
1
vote
1answer
68 views

How to update existent Facebook post?

I'm trying to update Facebook post from WindowsPhone application. I didn't find any mentions in documentation: https://developers.facebook.com/docs/reference/api/post/ Create/Delete works just fine ...
2
votes
1answer
80 views

How to post the Images on facebook via code in windows phone?

I want to create a windows Phone app using two social services one is Gmail and another one is Facebook. I use EmailComposeTask for Gmail service and i create the facebook developer account for ...
0
votes
3answers
122 views

getting security warning in facebook authentication

I am getting security warning while using authentication in facebook app.My code is as shown with screenShot with security warning private void imageFacebook_Tap(object sender, GestureEventArgs e) { ...
0
votes
2answers
119 views

Get facebook username using c#

Hi is there any way where i can get user's facebook username using their email and password? I have already done the authentication for user to login with facebook but i need a way to get the username ...
-1
votes
1answer
115 views

Call C# function from C++ with Cocos2dx for WP8 (ex: Facebook sdk) [duplicate]

I'm developing for Windows Phone 8 with the latest release of Cocos-2dx. Is there any way to call C# function from C++? I need to integrate facebook sdk, I searched in internet but could not find any ...
0
votes
0answers
52 views

Windows Phone Negative App getting Credentials from All ready Installed Facebook App in WP

I need a Help From You. I Developing App with Login Credentials of Facebook. Im working with facebook authentication and it's working Properly. But we want More Easy way. If already Windows Phone ...
0
votes
3answers
411 views

Installing facebook c# sdk

I couldn't find any other questions on this...so I must be doing something wrong. I have never used NuGet before, so my problem could very well be there. Anyways, I am making a WP8 app in VS2012. I ...
0
votes
1answer
162 views

Get the AccessToken of Facebook without login using HttpWebRequest for WP8

I am trying to get the accesstoken like this, string uri = "https://graph.facebook.com/oauth/access_token?client_id=" + APP_ID + ...
0
votes
1answer
320 views

window phone 8 facebook connect

I'm trying to do the facebook connect sign in from this resource: http://mobile.tutsplus.com/tutorials/windows/windows-phone-connecting-with-facebook/ However,thats a different from the tutorial is ...
3
votes
2answers
349 views

How to logout with facebook c# sdk

I'm writing one wp8 application which uses the facebook c# sdk. Everything is going well but one thing won't work (and it drive me crazy) : I can not log out the user. I tried: var logoutParameters ...
0
votes
1answer
127 views

Is there any facebook api for c# available to use in windows phone for getting nearby places(atms/hotels)?

Is there any facebook c# api available to use in windows phone for getting nearby places(atms/hotels/hospitals/famous places etc) ?
0
votes
0answers
59 views

Having trouble fetching data from Azure

I'm making a WP8 app, and I'm trying to make it so users can sign up and log in with FB. What I'm doing right now is trying to code for the possibility that a user will install the app on FB without ...
0
votes
0answers
233 views

Facebook 'Like' windows phone 8 using Graph API

I am developing Windows Phone 8 app, Which requires Facebook authentication. For that i have created facebook app using which I am able to authenticate user and ger User_access_token. I can post from ...
3
votes
1answer
414 views

Problems referencing Facebook SDK C# WP8 from C++ Windows Phone 8 app

I try to reference facebook.dll - wp8 branch - within an app of type "Windows Phone Direct3D App (Native only)" project under Visual C++ VS2012, and I get the error: a reference to [dllname] ...
0
votes
2answers
228 views

get a list of liked videos by user using facebook graph api

I am developing an app on windows phone 8, using the facebook graph api. for that, i need, for a particular user, all the youtube video posts that he/she has liked ever, but I haven't succeeded till ...
-1
votes
1answer
170 views

Getting started with Instant Messaging on windows phone 8

here is my scenario. I have this windows phone 8 app, that has a routing history that shows all the comments left by people who is currently using this document, now when i click on one of these ...
0
votes
1answer
641 views

Upload Image with Facebook status, WP8

I am unable to send the facebook status with image. Found the code but it throws the exception The Safe handle is closed kindly let me know if i am missing something. there was another example ...