Automatic FB Login NO PROMPT [closed] - facebook

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I am wanting to add some FB functionality to our MVC business site. There are certain events that result from customer activity on our site. I would like to post these events to our company timeline. I have several working examples and tutorials but where I am having difficulty is at log in. I would like to have the system use stored credentials..web config etc. rather than prompt for login. However all the docs etc. show that the OAuth end point doesn't accept these kind of parameters??
So how can I have the system log in using stored credentials?
TIA
JB

Facebook used to have an offline_access permission that is now defunct. What you can now do is trade in a short-lived token for a long-lived token (that I think lasts around 60 days) and store that on your server. Check out the details here to learn more about this process.

Related

Uber server token are not working any more, How to generate new server token [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 2 years ago.
Improve this question
Uber server token are not working any more, on dashboard it shows "Please reach out to your Uber BD Representative for server token access."
It seems Uber is changing API access and has done some sort of purge which forces getting access through some approved "Business Development" rep or process.
You can read this page, that might help.
You can go ahead without adding Server Token your app will work properly.
In the past, I also faced this problem but without adding server token my app started working properly.

Facebook app token needed? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I'm trying to get the albums and pictures from a Facebook page so I'm able to directly use the Open Graph API, ain't I? at least I see no problems so far. Is there any advantage on using an app token under this scenario? what about events?
Although you are able to achieve what you want without using app access token, but you should still use app access token to interact with public ibjects on Facebook as it is how these objects are intended to be accessed. Moreover, Facebook API is in constant state of change and very soon they might decide to stop giving result without access tokens, so if you use app access token you will noy have to revisit to fix your app, which is the advantage in your scenario.
Similarly for events althought you might get information about events without using app access tokens, but they should still be accessed by providing app access token.

FB User Login Place [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
Is it possible to get the login locations of Facebook users through the Facebook API or without authenticating as anyone?
For example, I want to know whether a user has logged in from a particular place. All I have is the URL of this user's public profile.
No, you can't - imagine the security implications if you can find out where anyone using Facebook has been logging in from.
This is common sense.

How to collect posts containing specific words from public Facebook users? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I'm trying to collect posts from public Facebook users that have a certain word such as, holiday, marriage, etc. What are the best tools and approaches to collect this data?
Use an implementation like this:
https://graph.facebook.com/search?q=Microsoft&type=post&fields=link,message&access_token=YOUR-API-ID|YOUR-APP-SECRET
It fetches results like you have requested. Make sure this call is going on at your server, so that your API ID or API Secret is not exposed.
P.S. If you do not have an app setup, visit Facebook Dev Page
Cheers.

facebook api fan page user list [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
is it possible to get list of uids of users who is fan of specific fan page with facebook api ?
I have not (yet) found a method to retrieve all the fans for a page without a key.
You can get a verification if a user is a fan, according to Facebook at least. In practice, use of the method still requires a key.
I'm actually looking for thesame thing, and from the looks of it, the answer is no. User list is not one of the properties you can read according to this page.