I’m trying to fetch the recording details and timeline file using GRAPH API of Teams, but it is not there is there any way we can fetch them? I can able to fetch the recording using one drive but issue is we need to grant drive scopes which is not good, can’t we achieve using teams graph API’s? also timeline
Tag: microsoft-graph-api
Filter null values from JSON
I receive the following JSON from the MS Graph API: How can I filter the null values using Python (3.9) ? Answer First of all, processing it is easier when it’s been converted to python data structure, such as a dict. The built-in json module can convert a json-string into python objects using json.loads. You can create a new dictionary