我有列表页面应用程序,它将加载启用了Azure AD身份验证的多个云应用程序。
在我的列表应用中,我启用了oAuth,一旦用户通过身份验证,我就可以浏览可访问云应用程序的主页。
但我需要过滤可访问的云应用程序。 我试图通过使用auth令牌发送请求以编程方式检查访问。
身份验证在可访问和不可访问的URL上都取得了成功。但响应字符串表示需要登录。请在此建议我
检查身份验证的代码
client = new HttpClient();
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue( token.Key, token.Value );
try
{
response = await client.SendAsync( request );
if( response.IsSuccessStatusCode )
{
string responseString = await response.Content.ReadAsStringAsync();
}
} catch (){}