如何在DropBox SDK中找到通过XCode登录的当前用户的用户ID。 我需要以编程方式完成它。
答案 0 :(得分:19)
在链接后的代码中,您可以添加:
[self.restClient loadAccountInfo];
和代表:
- (void)restClient:(DBRestClient*)client loadedAccountInfo:(DBAccountInfo*)info {
NSLog(@"UserID: %@ %@", [info displayName], [info userId]);
}
答案 1 :(得分:0)
链接到Dropbox后,您可以尝试以下代码:
NSString* dropbox_id=[[DBSession sharedSession].userIds objectAtIndex:0];