2017-03-07 230 views
0

我正在尝试使用以下代码段从Azure Active Directory获取用户组中的信息。无法从Azure Active Directory获取用户组

public async Task<List<string>> GetUserGroupsAsync(string alias) 
{ 
      var groupList = new List<string>(); 
      try 
      { 
       Microsoft.Azure.ActiveDirectory.GraphClient.IUser userObject = getUserObject(alias); 
       Task t = Task.Run(async() => 
       { 
        var grouppages = await ((IUserFetcher)userObject).MemberOf.OfType<Microsoft.Azure.ActiveDirectory.GraphClient.Group>().ExecuteAsync(); 
        do 
        { 
         groupList.AddRange(grouppages.CurrentPage.Select(g => g.Mail != null ? g.Mail.Trim() : null).Where(eMail => !string.IsNullOrWhiteSpace(eMail)).ToList()); 
         grouppages = await grouppages.GetNextPageAsync(); 
        } while (grouppages != null); 
       }); 
       t.Wait(); 
      } 
      catch 
      { 
       throw; 
      } 
      return groupList; 
} 

问题:我收到例外低于一些用户。

System.AggregateException: One or more errors occurred. ---> System.AggregateException: One or more errors occurred. ---> System.AggregateException: One or more errors occurred. ---> Microsoft.Data.OData.ODataErrorException: The specified page token value has expired and can no longer be included in your request. ---> System.Data.Services.Client.DataServiceQueryException: An error occurred while processing this request. ---> System.Data.Services.Client.DataServiceClientException: {"odata.error":{"code":"Directory_ExpiredPageToken","message":{"lang":"en","value":"The specified page token value has expired and can no longer be included in your request."}}} 
    at System.Data.Services.Client.BaseAsyncResult.EndExecute[T](Object source, String method, IAsyncResult asyncResult) 
    at System.Data.Services.Client.QueryResult.EndExecuteQuery[TElement](Object source, String method, IAsyncResult asyncResult) 
    --- End of inner exception stack trace --- 
    at System.Data.Services.Client.QueryResult.EndExecuteQuery[TElement](Object source, String method, IAsyncResult asyncResult) 
    at System.Data.Services.Client.DataServiceRequest.EndExecute[TElement](Object source, DataServiceContext context, String method, IAsyncResult asyncResult) 
    at System.Data.Services.Client.DataServiceContext.EndExecute[TElement](IAsyncResult asyncResult) 
    at Microsoft.Azure.ActiveDirectory.GraphClient.Extensions.DataServiceContextWrapper.<ExecuteAsync>b__6b[TSource,TInterface](IAsyncResult i) 
    at System.Threading.Tasks.TaskFactory`1.FromAsyncCoreLogic(IAsyncResult iar, Func`2 endFunction, Action`1 endAction, Task`1 promise, Boolean requiresSynchronization) 

请帮忙解决这个问题。这将是非常有益的。

+0

错误信息不够明显吗?您的访问令牌已过期。顺便说一句,你应该包括'getUserObject'函数 –

回答

0

根据我的理解,当我们试图逐页检索组的成员时,会发生异常(The specified page token value has expired and can no longer be included in your request.),但同时还有其他人在操作组成员,如添加或删除。

我们需要在代码中处理这个异常。例如,我们可以通知用户和信息用户在我们得到此异常后重试以获取成员。

+0

在这个问题上的任何更新?我们刚刚开始体验这个问题。 –

相关问题