ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / User Groupware functions
  • Properties specific to the description gpwOAuthParameters variables
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
The gpwOAuthParameters type allows you to define all the information needed for authentication to the User Groupware via an application that uses the OAuth 2.0 standard. These characteristics can be modified using different WLanguage properties.
This type of variable must be passed as parameter to gpwAuthLogin. If successful, this function returns a Buffer to use with gpwRemoteConnect.
Remark: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Example
arrOAuthParam is array of gpwOAuthParameters
arrOAuthParam = gpwListOAuthParameters()
IF ErrorOccurred THEN
Error(ErrorInfo())
RETURN
END
 
Parameters is gpwOAuthParameters = arrOAuthParam[1]
sCode is string = gpwAuthLogin(Parameters)
IF ErrorOccurred THEN
Error(ErrorInfo())
RETURN
END
 
User is gpwUser
sToken is string
(sToken, User) = gpwRemoteConnect(Parameters, sCode)
IF ErrorOccurred THEN
Error(ErrorInfo())
RETURN
END
Remarks

Properties specific to the description gpwOAuthParameters variables

The following properties can be used to handle the information required to perform the authentication:
Property nameType usedEffect
AuthURLCharacter stringAuthorization URL to be used (first URL of OAuth 2.0 specification)
ClientIDCharacter stringClient identifier supplied by the service when registering the application.
IdentifierIntegerIdentifier of the provider used.
NameCharacter stringName of the provider used.
TypeInteger constantType of login that allows for authentication:
  • gpwFacebook: Login with a Facebook account.
  • gpwGoogle: Login with a Google account.
  • gpwMicrosoft: Login with a Microsoft MSN account.
  • gpwSalesforce: Login with a Salesforce account.
  • gpwYahoo: Login with a Yahoo account.
Minimum version required
  • Version 25
Comments
Click [Add] to post a comment

Last update: 12/13/2022

Send a report | Local help