我的设置:
问题:
使用ripple,当我调用client.login()时,会出现身份验证对话框,它会进行身份验证,但弹出窗口不会关闭。并且永远不会调用done()回调。弹出窗口中的网址类似于:https://localhost:44307/login/done#token=%7B%22user%22%3A%7B%22userId%22%3A%22Google%3A1...
我不确定它是否可以正常工作,但使用html客户端(从管理门户网站下载)可以正常使用身份验证。我已尝试在涟漪中禁用代理,并在没有运气的情况下重新编写项目。
更新:我使用默认客户端,这里没什么特别的
//
<script src="http://ajax.aspnetcdn.com/ajax/mobileservices/MobileServices.Web-1.2.5.min.js"></script>
var client = new WindowsAzure.MobileServiceClient(
'https://my-app-service.azure-mobile.net/',
//'https://localhost:44307/',
'jFWBtWeZsRaerKJzkCVC........');
var service = {
isSettingsLoaded: false,
saved: null,
login: function() {
var self = this;
var dfd = $q.defer();
client.login('google').done(function(d) {
// This is not called when using Ripple
}
);
return dfd.promise;
}
}
感谢您的帮助
方面
Larsi
答案 0 :(得分:1)
我遇到了同样的问题,修复方法是将您的应用网址添加到允许的外部重定向中。
请参阅How to: Configure your Mobile App Service for External Redirect URLs.
中的第7步