我们遇到了 Graph API 使用的速率限制问题。有什么方法可以升级我们的租户/会员资格以提高性能和响应时间?
它最多需要几分钟,有时 API 根本没有得到处理。我们需要实时响应。
在这方面的任何指示都会非常有帮助。
谢谢拉克什
Request Type : Get Channel messages API using Global Admin credentials is called with 1Second interval
Request URL : GET https://graph.microsoft.com/beta/teams/${teamId}/channels/${channelId}/messages
const options = {
headers: {
Authorization: `Bearer ${globalAdminAccessToken}`,
‘Content-Type': 'application/json',
Accept: '*/*'
}
};
let url = `https://graph.microsoft.com/beta/teams/${teamId}/channels/${channelId}/messages`;
axios
.get(
url,
options
)
.then(resp => {
console.log(resp);
})
.catch(error => {
console.log(error);
});