我正在为我的 azure 移动应用程序(https://www.newventuresoftware.com/blog/custom-authentication-with-azure-mobile-apps)进行自定义身份验证
我创建了AuthControll,它接受用户名和密码并创建令牌。当我调用MobileServiceClient.InvokeApiAsync("Auth", loginInfoDictionary)时,我成功收到了用户名和令牌。我使用收到的令牌创建了新的 MobileServiceUser(username)并将其设置为MobileServiceClient.CurrentUser。但是当我通过需要授权的方法调用MobileServiceClient.InvokeApi时,它告诉我我未经授权。
那我应该如何处理收到的令牌?我可以使用具有此类授权的MobileServiceClient.InvokeApiAsync和MobileServiceClient.GetTable方法吗?如果是,我错过了什么?