|
|
|
|
|
- Starting the session
- Closing the session
<fbSession variable>.Start (Function) In french: <Variable fbSession>.Ouvre Used to authenticate and log in to Faceboook.
MaSession is fbSession
MaSession.AppID = "1702546803104741"
MaSession.AppSecret = "badf00ddeadbeefbadc0deoff1ce8ecd"
MaSession.Permission = [fbInfoProfile, fbEmail]
IF MaSession.Ouvre() THEN
Info("Connecté")
END
Syntax
<Result> = <Session>.Open up()
<Result>: Boolean - True if the connection was established,
- False otherwise.
<Session>: fbSession variable Name of the fbSession variable corresponding to the connection to initialize. Remarks Starting the session - <fbSession variable>.Start authenticates users on a Facebook server. This function initializes the connection with the server and must be called before any interaction with Facebook.
- The <fbSession variable>.Start function must only be called from the main the thread of the application.
Closing the session An open Facebook session is persistent: it will remain open:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|