使用 Dropbox Objective-C 库获取帐户信息

这使用 Dropbox Objective-C SDK 从 Dropbox API 获取用户的帐户信息。

[[client.usersRoutes getCurrentAccount] response:^(DBUSERSFullAccount *account, DBNilObject *_, DBRequestError *error) {
    if (account) {
        NSLog(@"%@", account);
    } else if (error) {
        NSLog(@"%@", error);
    }
}];