我正在使用Office365 Rest api来写入用户onedrive进行业务.当我尝试通过传递客户端ID,客户端Secrete,资源(https://****-my.sharepoint.com),RedirectUri(https://*******)来获取OAuth令牌时我收到以下错误." AADSTS90093:无法获得同意 "在office365
我在哪里可以获得authcode,访问令牌,刷新其他用户的令牌,仅针对几个用户我正面临上述问题

我正在使用Foundation 5作为我的Web应用程序.现在,当我尝试调用模态时,我得到JS错误:
未捕获的TypeError:无法读取未定义的属性'css'"**
在控制台中.即使在基金会博客/支持中,我也无法找到任何可能的解决方案.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="viewport" content="width=device-width, height=device-height">
<link rel="stylesheet" type="text/css" href="css/index.css" />
<link rel="stylesheet" href="css/foundation.min.css" />
<link rel="stylesheet" href="css/swiper.css">
<script src="js/modernizr.js"></script>
<title>Test code</title>
</head>
<body>
<a href="#" data-reveal-id="myModal" data-reveal>Click Me For A Modal</a>
<div id="firstModal" class="reveal-modal" data-reveal>
<h2>Awesome. I have it.</h2>
<p class="lead">Your couch. It is mine.</p>
<p>Im a cool paragraph that lives inside of an even cooler modal. Wins</p>
<a class="close-reveal-modal">×</a>
</div>
<script type="text/javascript" src="js/index.js"></script>
<script src="js/jquery.js"></script> …Run Code Online (Sandbox Code Playgroud)