Direct Update working

This commit is contained in:
Eudes Inácio
2021-04-08 09:25:25 +01:00
parent 4bb6768207
commit dc404f5c24
7 changed files with 87 additions and 26 deletions
+22
View File
@@ -0,0 +1,22 @@
function wlCommonInit() {
WLAuthorizationManager.obtainAccessToken()
.then(
function (accessToken) {
alert('Index sucsse: ', accessToken)
},
function (error) {
alert('Index error: ', error)
}
);
}