使用 onedrive Android API 列出根文件夹中的文件

List files from the root folder with onedrive Android API

我在 Android 应用程序中使用 OneDrive,但找不到如何列出根文件夹内容。

我正在使用 LiveSDK

感谢您的帮助

您可以向位于 me/skydrive/files

的用户根 OneDrive 文件夹发出请求
GET https://apis.live.net/v5.0/me/skydrive/files HTTP/1.1
Authorization: bearer EwCIAq...
Host: apis.live.net

如果您使用的是 LiveSDK for Android,那么一旦您设置了 LiveConnectClient 运行.

,您的代码就需要看起来像这样
 mClient.getAsync("me/skydrive/files", new LiveOperationListener() {

     @Override
     public void OnComplete(LiveOperation operation) {
         JSONObject result = operation.getResult();
         // Use this information to update your application
     }

 });

要查看此代码的副本 运行,您可以查看示例 Android Application for its implementation