ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Communication / Facebook functions
  • Overview
  • Elements available in WLanguage
  • Registering the application on Facebook
  • Registering a WINDEV application on Facebook
  • Configuring Facebook authentication in WINDEV, WINDEV Mobile and WEBDEV
  • Establishing the connection
  • Using the Facebook API
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Overview
Facebook is the world's most popular social network. It is commonly used by companies to reach their customers. Facebook includes a very powerful API to take full advantage of the platform.
WINDEV, WEBDEV and WINDEV Mobile include two modes to use Facebook for Android and iOS applications:
  • a simple mode that allows users to use their Facebook credentials to log in to the WINDEV or WINDEV Mobile application, or to the WEBDEV website. Users don't need to set a new password.
  • an advanced mode to interface with Facebook in order to use the Facebook API from a WINDEV or WINDEV Mobile application, or from a WEBDEV website.
The principle is the same regardless of the selected use mode. You need:
  • Register the WINDEV or WINDEV Mobile application, or the WEBDEV website on Facebook.
  • Use Facebook login credentials in the WINDEV or WINDEV Mobile application, or in the WEBDEV website.
  • Log in to Facebook from the WINDEV or WINDEV Mobile application, or from the WEBDEV website to authenticate.
For the advanced mode, you can use different WLanguage functions that allow you to interact with Facebook via its API.
Please note: This feature is not available for WINDEV applications running on Linux.
Elements available in WLanguage
The following WLanguage elements can be used to communicate with Facebook:
  • the fbSession type. This type of variable contains all the elements required to implement the Facebook connection and authentication .
  • several functions:
    FBGetUserInformationGets the Facebook information of the connected user.
    FBRequestSends an HTTP request to the Facebook Graph API.
    FBSessionStatusChecks the status of a Facebook session.
    FBStartSessionUsed to authenticate and log in to Faceboook.
    FBStopSessionCloses the Facebook session opened with the FBStartSession function.
Registering the application on Facebook
WINDEV

Registering a WINDEV application on Facebook

First, it is necessary to create a Windows application in WINDEV using Facebook authentication and/or the Facebook API.
Let's see the steps to follow (valid at the time this page was written):
  1. Go to "https://developers.facebook.com/".
  2. Log in.
  3. Register if necessary and follow the steps.
  4. In "My Apps", click "Create App".
  5. In the page that appears, select "Consumer".
  6. Click "Next".
  7. In the popup that is displayed, specify:
    • The name of the application in "Add an app name".
    • A valid email address in "App contact email".
  8. Confirm the app creation (and validate the security check, if necessary).
  9. The page of the new app is displayed.
  10. Then, click the "Settings" menu and choose "Basic".
  11. Note down the "App ID" and "App secret".
  12. In the "App domains" field, type "localhost".
  13. At the bottom of the page, click on "Add platform" and select "Website".
  14. Enter the URL of the site: "http://localhost/".
  15. Then, click "Save changes".
The Facebook application is ready for testing.
At this point, you can log in to the application with the Facebook user who registered the application (administrator by default).
To include other users for testing, click the "Roles" menu and add the users with the relevant rights (developers, testers, etc.). You can also create test users ("Test Users" tab) to not use existing Facebook accounts.
To actually use the application, it must be set to public and be submitted to Facebook if necessary ("App Review" option). For more details, see the Facebook documentation.
Configuring Facebook authentication in WINDEV, WINDEV Mobile and WEBDEV

Establishing the connection

To log in to Facebook, you must:
  1. Configure a Facebook session (fbSession variable). In the different proprerties of this variable, you must specify:
    • WINDEV the "App ID" and the "App secret" provided when registering the application on Facebook.
  2. Establish the connection with FBStartSession.
For example:
MaConnexion is fbSession
// Paramétrage de la session
MaConnexion.AppID = "1664XXXXXXXXXXXX"
MaConnexion.AppSecret = "c6e7XXXXXXXXXXXXXXXXX"
// Définition des droits :
// - Lecture de l'email
// - Gestion des pages
MaConnexion.Permission = [fbEmail, "manage_pages", "publish_pages", "publish_actions"]
// Connexion
FBStartSession(MaConnexion)
If the connection is permanent, the function does not show a login screen and opens the session directly.
Remarks:
  • WINDEV A Web page is displayed in the default browser, allowing users to enter their login credentials.
  • An open Facebook session is persistent: it will remain open:

Using the Facebook API

FBRequest is used to sent requests to Facebook.
The following example lists the pages and groups managed by the current user:
sURL is string ANSI = GRAPHAPI + "me/accounts?locale=fr_FR"
sJSON is string ANSI
vJSON is Variant

// Récupère les pages gérées par l'utilisateur
sJSON = FBRequest(MaConnexion, sURL)
vJSON = JSONToVariant(sJSON)
The function returns the JSON response from Facebook.
Then simply read and access the members documented in the Facebook API: "https://developers.facebook.com/docs/graph-api/reference".
FOR i = 1 _TO_ vJSON.data..Count 
	ListAdd(LISTE_PAGES, gStoredValue(i) + vJSON.data[i].name)
END
Minimum version required
  • Version 21
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help