0

我尝试 API 来获取 iOS SDK 中的文件。
我已经注册了具有所有范围的应用程序,以读取/读写对应用程序的文件访问。我能够使用示例代码成功发送邮件。我在 Graph Explorer https://graphexplorer2.azurewebsites.net/?UrlRequest=GET&text=https%3A%2F%2Fgraph.microsoft.com%2Fv1.0%2Fme%2Fdrive%2Froot%2Fchildren中尝试了 API

请求片段:

AuthenticationManager *authManager = [AuthenticationManager sharedInstance];
NSMutableURLRequest *request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:@"https://graph.microsoft.com/v1.0/me/drive/root/children"]];
[request setHTTPMethod:@"GET"];
[request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
[request setValue:@"application/json, text/plain, */*" forHTTPHeaderField:@"Accept"];
NSString *authorization = [NSString stringWithFormat:@"Bearer %@", authManager.accessToken];
[request setValue:authorization forHTTPHeaderField:@"Authorization"];
NSURLConnection *conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];

if(conn) {
    NSLog(@"Connection Successful");
} else {
    NSLog(@"Connection could not be made");
}
[conn start];

回复:

{"@odata.context":"https://graph.microsoft.com/v1.0/$metadata#users('<user-email>')/drive/root/children","value":[]}

在此先感谢您的帮助 :)

我的示例应用程序的权限 我的示例应用程序的权限

4

1 回答 1

1

当应用程序无权访问给定用户驱动器的根目录中的任何文件时,该请求的响应为空。您能否检查(例如通过http://jwt.calebb.net)您正在使用的访问令牌是否有任何 Files.* 范围?Files.Read 足以满足该请求。

于 2015-11-20T03:30:04.263 回答