我添加了公告应用并添加了一些项目,现在我想从公告列表中提取项目,所以我使用了以下代码
token_Obtained_During_first_time_Login:这是我第一次使用 ADAuthenticationContext 类
的acquireTokenWithResource方法登录时获得的令牌- (void)getClientList {
NSString *appToken = [[NSUserDefaults standardUserDefaults]
valueForKey:@"token_Obtained_During_first_time_Login"];
NSString* hostName = @"https://myTenant.sharepoint.com/sites/myApp";
OAuthentication *credentials = [[OAuthentication alloc] initWith:appToken];
ListClient *client = [[ListClient alloc]
initWithUrl:hostName
credentials:credentials];
NSURLSessionTask* task = [client getListItems:@"MyAnnouncements"
callback:^(NSMutableArray *listItems, NSError *error) {
if (error==nil) {
NSLog(@"%@",listItems);
}
}];
[task resume];
}
我甚至调试了365代码,它为我提供了getListItems的以下URL:回调方法
https://myTenant.sharepoint.com/sites/myApp/_api/lists/GetByTitle('MyAnnouncements')/Items
我甚至尝试使用示例代码附带的getTokenWith方法
- (void)getAnnouncementList:(void (^)(ListClient *))callback{
NSString* hostName = @"https://myTenant.sharepoint.com";
[self getTokenWith:hostName :true completionHandler:^(NSString *token) {
OAuthentication *credentials = [[OAuthentication alloc] initWith:token];
callback([[ListClient alloc]initWithUrl:hostName credentials:credentials]);
}];
}
但仍然没有运气,我把名单列为零
请指导如何解决这个问题,我甚至已经验证了Azure目录中的权限一切似乎很好,我能够获取一个驱动器,邮件和日历的数据,但列表是我被卡住的地方。
每当我调用上面的代码时,我得到的答案都不确定错误是什么,我的猜测就是令牌。
答案 0 :(得分:1)
我通过更改Office 365的ListClient.m文件中的apiUrl来解决此问题。
我所做的一切都改为
const NSString *apiUrl = @"/sites/mobileApp/_api/web/Lists";
进行上述更改后,我可以访问所有列表数据。