使用 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);
}
}];