PC SOFT

FORUMS PROFESSIONNELS
WINDEVWEBDEV et WINDEV Mobile

Accueil → WINDEV Mobile 2024 → WM22 Android Google App Sign IN or OAuth use of Firebase
WM22 Android Google App Sign IN or OAuth use of Firebase
Débuté par MEX, 03 juin 2018 00:43 - 7 réponses
Posté le 03 juin 2018 - 00:43
Hello there, there are no concrete examples in how to use Firebase or Google oAuth with windev to be able to have your application sign in using the Google account or Using Windev oAuth with FireBase. there is only a very simple example using facebook, and all the other platforms are undocumented. Anyone has used the Windev Mobile oAuth with Google sign in or with FireBase ? i will appreciate any information from anyone that has done this integration before.
Membre enregistré
794 messages
Popularité : +40 (42 votes)
Posté le 04 juin 2018 - 16:20
Hi. This is not very actual, but maybe you couls try https://depot.pcsoft.fr/resource.awp…

Rubén
Membre enregistré
794 messages
Popularité : +40 (42 votes)
Posté le 04 juin 2018 - 17:27
Posté le 04 juin 2018 - 21:15
Thanks Ruben but that code only works on windows, on android that code does not work.
Membre enregistré
794 messages
Popularité : +40 (42 votes)
Posté le 05 juin 2018 - 06:45
Hi. Have you seen the OAuth example of help? Features are available for Android

Rubén
Posté le 06 juin 2018 - 02:37
All the PCSOFT documentation say the mobile framework supports this feature, and the functions and contants are there. but no examples that actually work on mobile whatsoever.... so i dont know
Posté le 06 juin 2018 - 02:45
Yes Ruben i have seen the code bu that code does not work when you deploy the app
Posté le 02 janvier 2019 - 14:12
Salut
voila mon code sa marche en Android :

MonToken est un AuthToken
MonTokenParam est un OAuth2Paramètres

MonTokenParam..ClientID = "11245xxxxxx54-uil0chpjp7j66ivb5kujlba72vap68iq.apps.googleusercontent.com"
MonTokenParam..ClientSecret = "ddMp-3XxxxxC0gf8nWbBAmDjQ"

MonTokenParam..URLAuth = "https://accounts.google.com/o/oauth2/auth"
MonTokenParam..URLToken = "https://accounts.google.com/o/oauth2/token"
MonTokenParam..URLRedirection = "http://localhost:9000/"
MonTokenParam..Scope = "email"

MonToken = AuthIdentifie(MonTokenParam)

//Info(UTF8VersChaîne(MonToken.RéponseServeur))

//clInfo est un OAuthWebUser
vInfo est un Variant
oRequête est une httpRequête
oRéponse est une httpRéponse

oRequête..URL = "https://www.googleapis.com/oauth2/v1/userinfo"
oRequête..AuthToken = MonToken
oRequête..Méthode = httpGet

// Exécute la requête permettant d'obtenir les informations du profil de l'utilisateur connecté
oRéponse <- HTTPEnvoie(oRequête)
SI PAS ErreurDétectée _ET_ PAS oRéponse..CodeEtat >= 400 ALORS

// Décode la réponse JSON contenu dans le message
vInfo = JSONVersVariant(oRéponse..Contenu)
//info(UTF8VersChaîne(oRéponse..Contenu))
// Recopie les données lues
// Attention, les chaînes sont au format ANSI / UTF-8
// Pour les afficher, il est nécessaire d'utiliser AnsiVersUnicode(<chaîne>, alphabetUTF8)

//info(vInfo.name)
// clInfo.ID = vInfo.id
// clInfo.Nom = vInfo.name
// clInfo.NomAffiché = vInfo.given_name
// clInfo.Image = vInfo.picture
// clInfo.Email = vInfo.email
// info(clInfo.Nom)
FolkyTalkLoginwithGoogle(vInfo)
SINON
Info("Error login")
RETOUR
FIN