在进行此调用时,使用Microsoft Graph API Explorer: https://graph.microsoft.com/v1.0/users/users@example.com/mailFolders
我收到此错误响应:
class foo
{
public:
int x, y;
foo(int x, int y) : x{x}, y{y} {}
explicit operator int() {cout << __PRETTY_FUNCTION__ << "\n"; return x/y;}
operator double() {cout << __PRETTY_FUNCTION__ << "\n"; return double(x)/double(y);}
};
void printint(int x)
{
cout << x << "\n";
}
int main()
{
foo var(1,2);
printint(var);
}
我是Office 365中的管理员,在“修改权限”下,我已为自己分配了所有权限。
我是否还必须在其他地方授予权限(Exchange Admin?)?如果是这样,我需要分配什么?