Like gating on a facebook website [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 trying to do Like-Gating for our application. The application is an external website using facebook connect.
I have looked around the documentation and found that you generally do this using the signed-request data you receive from facebook. But seems like that data is only sent by facebook if the app is a facebook page. Correct me if I am wrong.
How can acheive the same result on a external website using facebook connect?
Thanks in advance!

You can approximate this functionality by using the facebook Javascript API. Use this to subscribe to an event when the Like button (in a Like Box) is pressed, and then redirect the user to the gated content with that event.
I have done this before in real-world web apps, and it works well. I can post some of that code as an example, if you need it. The event you want to listen for is the edge.create event.

Sorry but the functionality you're asking for is only available on facebook.com with the exception of Pages, and thus you cannot like gate your website.

Related

Can't register app in SoundCloud developer [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 6 years ago.
Improve this question
When I try to register app SoundCloud page redirect me to Google Forms, where I fill all inputs. On submit I receive a message: "Looks like you have a question or two that still needs attention.", but there are no blank inputs. Any advice?
I had this issue also and when I changed the app URL and the redirect URI to something simple, for example 'http://www.appname.com' (as oppose to my localhost address), it seemed to work.
I have to say the new app sign-up on SoundCloud is pretty terrible, used to be so much more straight forward.
Hope this helps!
If you look at the API docs it specifically says that the scheme needs to be https, but after 6 hours trying to install the SSL, giving up on it the and one last look at the google docs I realize that it said http or https!

Auto publish my joomla articles in my facebook page [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 have a Facebook page and i want to publish my joomla website articles in this page, that mean after add a new article in my website automatically published in the facebook page, here is my web site, so plz if someone has any idea i will be very appreciative :)
There are a lot of developed plugins and components which will do the job. Check the Joomla Extensions Directory, you will see, that there are commercial and non-commercial solutions that might fit your needs.
This one http://extensions.joomla.org/extensions/social-web/social-share/social-multi-share/18072 comes with auto publish to Facebook and Twitter. I'm using it on my site and it has an auto Facebook page import function in the plugin parameters itself. It has all the configuration options you need.

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.

Automatic FB Login NO PROMPT [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 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.

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.