gpt4 book ai didi

azure - WindowsAzure.MobileServiceClient 显示一个烦人的消息框 "You have successfully signed in"

转载 作者:行者123 更新时间:2023-12-02 07:28:48 25 4
gpt4 key购买 nike

我正在使用 Azure-mobile-service 登录 facebook。但是登录后却显示消息。如何隐藏消息框?

var client = new WindowsAzure.MobileServiceClient('https://mysite.azurewebsites.net');
client.login('facebook', $scope.token).done(function (result) {
......

enter image description here

最佳答案

好吧,为了避免出现此消息,您可以使用此 Cordova plugin联系 Facebook,然后将返回的访问 token 提供给您的应用服务进行身份验证。

以下是您可以在移动客户端中使用的示例代码:

facebookConnectPlugin.login(["public_profile"], function(data) {

client.login('facebook', {"access_token": data.authResponse.accessToken}).done(function (result) {
console.log('result: ' + JSON.stringify(result));
});

}, function (error) {
console.log('error: ' + JSON.stringify(error));
});

关于azure - WindowsAzure.MobileServiceClient 显示一个烦人的消息框 "You have successfully signed in",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44058128/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com