方法openShiftsRequests返回针对段“ openShiftsRequests”找不到的资源

问题描述

我尝试使用api团队批准待批准的班次。

Pending shifts teams

阅读API我认为正确的方法https://docs.microsoft.com/en-us/graph/api/openshiftchangerequest-list?view=graph-rest-1.0

当我尝试使用图表探索此方法时,响应请求是:

struct MyView<Content: View>: View {
    @Binding var matched: Bool
    var nspace: Namespace.ID
    let content: Content
    
    init(matched: Binding<Bool>,nspace: Namespace.ID,@viewbuilder content: @escaping () -> Content
    ) {
        self._matched = matched
        self.nspace = nspace
        self.content = content()
    }
    
    var body: some View {
        ...
    }
}

我的请求是https://graph.microsoft.com/v1.0/teams/MY_TEAM_ID_WITH_SHIFT/schedule/openShiftsRequests

我该怎么办?

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)