Questions tagged [facebook-javascript-sdk]

Facebook's JavaScript software development kit (SDK) delivers a diverse range of features on the client-side for seamless access to Facebook's server-side API requests. It effectively integrates with an array of SDKs, such as PHP, C#, Java, Android, iOS, and more.

Not prepped for EasyFB

Currently incorporating Easy Facebook for AngularJS (https://github.com/pc035860/angular-easyfb) into my project and encountering some inconsistencies in its functionality. Upon inspecting with console.log(ezfb);, I discovered the following: https://i.sta ...

What is the process for accessing someone's birthday information using the Facebook API?

Working on integrating Facebook login and successfully retrieving user details such as first_name, email, etc. However, encountering an issue with fetching the birthday information. When attempting to call for birthday using the code snippet below, no data ...

Fetch a single random profile image from a Facebook user's list of friends using Javascript

I'm currently facing an issue with displaying a random profile picture of the user's friends on Facebook. I attempted to troubleshoot it myself but ended up crashing the login button and now it's not functioning properly. Can someone please help me identif ...

Authorization error: The specified URL is not permitted by the application settings for Facebook login using the Javascript SDK

Encountered an error while trying to implement Facebook login using Javascript SDK in Chrome console: The given URL is not permitted by the application configuration: One or more of the URLs provided are not allowed by the app's settings. It must matc ...

Is it possible to create a Facebook reveal tab using either Javascript or .NET?

As a developer who jumped into Facebook development just before the recent changes, I am feeling lost when it comes to building apps now. I see many questions similar to mine about creating fan-gating features using Javascript only. Is there an up-to-date ...

Accessing Public Photos from Facebook Users

Is it possible to create a web app that can retrieve all public photos from any user's Facebook account using their profile URL? For instance, some Facebook profiles allow non-logged in users to view profile pictures and cover photos. I am developing this ...

Unlocking the power of the Facebook PHP SDK v5: A guide to access

I am currently working on developing a digital journal platform that utilizes Facebook Login for users to sign into the website. The idea is for users to log in using the JavaScript SDK (as recommended in the documentation) and then have their user details ...

Enhance the Facebook Login popup with personalized settings

When a user clicks, a popup is triggered: FB.login(function () { // My CallBack }, { scope: 'email,user_birthday,user_location,user_hometown' }); This generates a Facebook login link with multiple parameters. I desire to include an ad ...