All Questions
7 questions
-1
votes
1
answer
323
views
Facebook Access Token keeps Expiring c#
I have a web application that runs a schedule job which pulls in the Facebook reviews from a page which I manage. Here is a snippet
public void Execute(IJobExecutionContext context)
{
//...
0
votes
2
answers
338
views
Facebook active token failure C# HttpWebRequest
I obtain an access_token OK from Facebook, but whenever I try to use it, it fails (bad request).
It looks like the access_token is not being sent to the server correctly. I have used Server....
0
votes
1
answer
468
views
Upload an Image to multiple facebook accounts in C#
I have a Facebook application that the users can subscribe in it. To subscribe, I made a PHP webpage that the user can log in using his Facebook account information and when he become logged in I ...
4
votes
1
answer
3k
views
How do I post to Facebook user's friend's wall with publish_stream but NOT offline_access using an application access token
Documentation for publish_stream reads: "Enables your app to post content, comments, and likes to a user's stream and to the streams of the user's friends. With this permission, you can publish ...
0
votes
1
answer
1k
views
Problems using captured access token to retrieve user's facebook information
I have been attempting to code a windows form application that interacts with facebook to retrieve the access token that has permissions to get some of the user's information. I have been trying to ...
0
votes
2
answers
368
views
How to post to a user's wall while he is offline,renew his token(if expired) via my app. C# Facebook SDK
I know how to use the token after the user successfuly logs in with
FacebookLoginDialog(AppId, ExtendedPermissions);
but what happens when my app wants to post at this user while he is offline? And ...
7
votes
7
answers
26k
views
how to post to facebook page wall from .NET
I've created Facebook page.
I have no application secret and no access token.
I want to post to this page from my .NET desktop application.
How can I do it? Can anyone help please, where can I get ...