The Facebook SDK for .NET helps developers build web, desktop, phone and Windows Store applications that integrate with Facebook.

learn more… | top users | synonyms

0
votes
0answers
9 views

How can I call my .ashx handler to retrieve my Facebook token?

I am new to Web handlers. Here is the handler taken basically from the tutorial www.facebooksdk.net. using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace ...
0
votes
1answer
6 views

tagging a friend in a facebook post c# sdk

I am trying to test the ability to tag friends in messages from our app. It posts to facebook just fine, caption, description, name, picture, and link all display as they should, but in message all it ...
-1
votes
0answers
12 views

Is it possible to send facebook invite to application in widows phone?

I need to send an invite to my application to all my facebook friends on windows phone. I found this http://developers.facebridge.net/bugs/165333086959686?browse=search_5192fdea03bf29178364623, but is ...
1
vote
2answers
23 views

Facebook web application extended permissions second step dont show

I'm setting up an application (C#.Net4.5 MVC4, razor views) which need pretty much all available user permissions from facebook. You can see code examples below how I have set it all up. The ...
0
votes
0answers
12 views

Upload a post with description and title using facebook c# sdk

I used the following code. Picture is posted successfully with a name but its not able to post message/description with it. Please tell me where i am wrong. Also its not giving any exception. ...
0
votes
0answers
23 views

Unable to get pages owned by user

I am kind of new in C# dev and i am trying to get all the page id's and name's owned by the user but i don't get it why my code is not working . A solution to this will be great below is my code ...
0
votes
1answer
34 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
0answers
19 views

Facebook connection with asp.net

I'm using FacebookClient API, I store the access_token in a session. Everything works just fine. How do I check if the access_token is related to the actual facebook user? if I log out in Facebook ...
0
votes
0answers
27 views

Facebook API Authentication on Desktop application without the official SDK

I want my C# desktop application to share content via Facebook. I cannot use the official .NET SDK, since that's not supported on .NET 2.0. Specifically, I want to know how to do the login process. I ...
0
votes
2answers
34 views

Accessing Result property of a Task

I am trying to retrieve the ID of an album using the C# Facebook SDK. However I am getting the below error: System.Threading.Tasks.Task' does not contain a definition for 'Result' and no extension ...
0
votes
0answers
15 views

Create FB feed entry that will launch iOS application

I have an iOS (iPhone) application that supports deep linking. Using a custom protocol (e.g., foo://bar/) I can launch my iOS application from a link contained in a web page. Next, I would like to ...
0
votes
0answers
17 views

FB signed_request issue ASP.net c#

I want to access signed_request param on my asp.net page. FB is redirecting the request successfully to the right page. However, it is a GET request thus no signed_request param is passed. Please ...
0
votes
0answers
25 views

“An unknown error has occurred” When trying to Like a comment on a page post

I'm developing an app, and when I try to create a like on a comment (of a page post) I always get the following error: { "error": { "message": "An unknown error has occurred.", "type": ...
0
votes
0answers
26 views

Get all public facebook events in a given area?

Is there a way to get all public facebook events in a given area, regardless of wether you are linked to them in any way? I have seen a few posts on how to get events you are invited to but not to get ...
0
votes
0answers
24 views

“Task's exception(s) were not observed” Error when using the Facebook C# SDK

Using the Facebook C# SDK (http://facebooksdk.net/) and a WinForm application in vb.net I have Post Async requests like this: fbClient.BatchTaskAsync(New FacebookBatchParameter(method)) In the ...
1
vote
1answer
52 views

Does the Facebook API allow for automated changes to old post visibility?

In other words, is there an API that would allow a Facebook user to change their posts (through a 3rd party app), which are older than a specified date, from being visible to the list "Friends" to ...
0
votes
0answers
41 views

LoginAsync() throws exception on Windows Phone

I am trying to implement Facebook C# API to our game project. I went with tutorial: http://facebooksdk.net/docs/phone/tutorial and I freezed with the first task: authentication. Since we are ...
0
votes
0answers
14 views

Posting to a page's feed with mentions, the mentions are filtered out

When posting a message with a status including a mention, such as "Message with @[id:Mention]", the message appears on the page with the mention removed, in this case as "Message with ". Is posting ...
0
votes
1answer
49 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
1answer
61 views

Custom Like using Facebook C# API

I'm using Facebook C# API and I want to create a custom "Like" action, allowing the user to like objects outside of Facebook. The user will be allowed to "Like" a custom object, like an Apple or a ...
0
votes
0answers
60 views

Upload photo to Facebook Page as Business User ends without error but photos can be viewed only if page-mode is on (use facebook as page)

I am writing a script which uploads photos to a Facebook Page (fanpage). Maybe can be useful for you to know that this page is still set to private ("not published") What I am trying to do is upload ...
0
votes
0answers
51 views

how logout facebook c# sdk in windows 8?

how logout facebook c# sdk in windows 8? i use this code but cannot logout var logoutParameters = new Dictionary<string, object> { ...
0
votes
0answers
54 views

Convert expires_at filed from debug token in Facebook c# sdk

Hello I got a JsonObject by debug_token and I need to know what is expires_at/issued_at (What is the dataType) and how to convert it to C#'s DateTime. Simply I need to know what is facebook mean by ...
0
votes
0answers
48 views

How to post the images on Facebook wall in windows phone 7?

Hi I am new in windows phone platform, i want to know how to post and share the images on facebook wall for my app using c# in windows phone, please let me any sample project if anybody have it and ...
1
vote
0answers
24 views

Creating facebook business page is POSSIBLE but how?

I researched a lot on this subject and on everywhere I've seen, it is stated that creating page with facebook api is not possible. There is one application, Pagemodo, which manages that and I don't ...
-1
votes
0answers
60 views

Integration Facebook Authentication

Is there a tutorial or link you can share for the newest Facebook C# SDK for .net? I followed this link http://mobile.tutsplus.com/tutorials/windows/windows-phone-connecting-with-facebook/ but it's ...
0
votes
1answer
75 views

Rubymotion x Facebook iOS SDK // Install problems // [!] Unable to find a specification for `Facebook-iOS-SDK`

After having successfully installed and used the SDK on another computer for a project, I'm struggling to make it works on another station, getting the following error : [!] Unable to find a ...
1
vote
1answer
45 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 ...
0
votes
1answer
66 views

Unable to retrieve events/pictures for friend of a user through Facebook Graph API

I am trying to build a WPF C# application which requires shared data of a friend of my application user. I have tried using this query https://graph.facebook.com/[User_Id]/?fields=photos. But it do ...
0
votes
0answers
15 views

Facebook c# SDK and Microsoft.web.helper library conflict

I am currently working on a project which requires me using facebook C# SDK and Recapcha helper available in the microsoft.web.helper assembly. After installing the microsoft.web.helper library, all ...
2
votes
0answers
66 views

Can not connect with Facebook SDK v6

I try to use the new version of Facebook SDK but i can not connect with it. Error : Could not parse Facebook OAuth url. First i define the login uri with this fonction public static string ...
0
votes
0answers
21 views

Facebook user news feed/unique user

Im developing an ios app with facebook integration, I want to display the news feed of a single user, like if it is a group page, but public feed of a user. Is there a way to make an automatic login ...
1
vote
0answers
82 views

How to share a facebook page's post on a facebook group using the facebook c# sdk v 6.x

I have tried to post a normal post on my Facebook groups using this desktop app that i created and succeeded i can publish normal posts or posts having a link to display its preview normally but when ...
0
votes
2answers
142 views

Error using facebook C# sdk with WPF web browser

I am new to facebook c# sdk. I followed the tutorial in this link. I created an application that displays the user name after log in. Here is my code: public partial class MainWindow : Window { ...
0
votes
0answers
50 views

i am am using the facebook c# api in vb.net to try and delete photos from my albums

i am am using the facebook c# sdk in vb.net to try and delete photos from my albums. the delete is as follows:- FB.DeleteTaskAsync("/" & pic.ID) if the photo was uploaded by my application this ...
0
votes
1answer
35 views

Can't GET my application's app page (100)

My application has 3 pages associated with it. Here are their id's : 151500351683665 (Community page) 143448712494935 (Community page) 563925353640654 (Application page) Using the facebook C# ...
-1
votes
1answer
41 views

How to get the Facebook Id , if I only have the email

I´m developing a website and I want to show the Facebook Profile Image of my registered users on my site. The problem I´m facing is that I neither have the Facebook Id nor the Username of the Facebook ...
0
votes
0answers
41 views

Posting events from my website to a facebookpage

I've been looking around for days, maybe weeks to get an answer to my question. This is the situation. I have a website where people can login with their facebook-account. On the website people can ...
0
votes
0answers
27 views

Reg: FB Image urls

We are using FaceBook api from hallmark.com to import images from FB. And we are getting the urls for images as seen below. ...
1
vote
1answer
87 views

Facebook SDK for Windows Phone: InvalidOperationException: Operation is not valid due to the current state of the object

I'm getting this exception when awaiting LoginAsync: await fb.LoginAsync("user_about_me"); The full stack trace is the following: {System.InvalidOperationException: Operation is not valid due to ...
-1
votes
2answers
100 views

facebook Insights api - Need code/step to authenticate with out user intervention

Need Facebook Insights API - Sample code / steps to retrieve the authentication token for an automated windows console application in C#. We have an automated windows console application ...
0
votes
0answers
62 views

Using WebBrowser in a class of a c# MVC 4 projec?

I need to open the page for the FACEBOOK authentication popup for the C#, but how I do this in a secudanry class (not a controller)? private Uri GenerateLoginUrl(string extendedPermissions) ...
1
vote
0answers
19 views

Link description gets truncated

I am trying to post a URL with caption and description. However, only the first part of the description is displayed after posting to timeline (the first 3 lines, no "..." or other indicators to show ...
0
votes
2answers
81 views

How can I get the links on my Facebook wall with the .NET Facebook SDK?

I'm using the SDK found here... http://facebooksdk.net/ And the documentation seems to be severely lacking at this point.
0
votes
1answer
235 views

How to get Facebook friends email address using Facebook C# sdk 5.4.1.0 in Windows phone 7

I want to import Facebook contacts(Friends email address) to using an Windows Phone application app and save those contact to local phone. I want use Facebook C# sdk for, please tell me how to ...
0
votes
0answers
125 views

How to get FB access token when user have given some permission and denied some permission using Facebook C# sdk 5.4.1.0

I'm facing this issue on Window Phone 7.8. I'm not able to get access token when user give some permissions to my app and some skips or denied. For e.g I have asked user to give these permissions ...
0
votes
0answers
30 views

XMPP require user avatar

I try to get the avatar of any user by send iq to require user vcard . When I got the response from the server I try to set the PictureBox image to user avatar.Yes I done that part but the picture ...
0
votes
0answers
61 views

How to get sharedposts field with FQL?

I'm working with an application that collects a list of users that have either liked or commented on a post in a Facebook fan page. I would like to modify this application to also collect the list of ...
0
votes
2answers
113 views

How to call a particular method every some seconds in c#?

"Robot Game" is the first basic game I developed. The Magenta '#' character is an enemy and it is supposed have a random movement in this map, but its random movement is too fast and I tried to use ...
0
votes
1answer
72 views

post photo with description Facebook sdk 3

how to post photo with description with new facebook sdk ? I tried with : Request photoRequest = Request.newUploadPhotoRequest(Session.getActiveSession(),mBitmap , new Callback() { ...

1 2 3 4 5 32