我当前正在使用下面的API在共享点的“ Teams Site”下获取驱动器。
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview_candidates"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toTopOf="@id/view_main_bottom_nav"
android:layout_height="0dp"
android:layout_width="0dp" />
<ProgressBar
android:id="@+id/progress_bar_load_candidates"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminateTint="@color/colorKLMBlue"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<View
android:id="@+id/drop_shadow_elevation"
android:layout_width="match_parent"
android:layout_height="4dp"
android:background="@drawable/drop_shadow_elevation_upwards"
android:elevation="4dp"
app:layout_constraintBottom_toTopOf="@id/view_main_bottom_nav" />
<com.xx.android.xxx.ui.bottomnav.BottomNavBar
android:id="@+id/view_main_bottom_nav"
android:layout_width="match_parent"
android:layout_height="56dp"
android:elevation="4dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<FrameLayout
android:id="@+id/layout_main_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toTopOf="@+id/view_main_bottom_nav"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" >
</FrameLayout>
</android.support.constraint.ConstraintLayout>
我的要求是如何获取除团队站点以外的站点(包括子站点)中列出的驱动器。
答案 0 :(得分:1)
根据您的描述,我假设您要在站点中列出驱动器。
首先,我们可以使用/sites/root
或https://graph.microsoft.com/v1.0/sites/{site-id}/lists
来获取另一个站点的id属性。
然后我们可以使用https://graph.microsoft.com/v1.0/sites/{site-id}/drives
来检索站点的驱动器。