Receiving 400s and 500s when attempting to get singleValueExtendedProperties

前端 未结 1 413
无人共我
无人共我 2021-01-21 18:42

trying to add extended properties to calendar objects. I am able to create calendars with the following payload (Ruby syntax, payload is sent as a JSON):

name: bu         


        
1条回答
  •  隐瞒了意图╮
    2021-01-21 19:20

    I reproduced this for the $expand case in Graph Explorer. The problem seems to be the = inside the parentheses. If you URL-encode that to %3D the query works fine.

    $expand=singleValueExtendedProperties($filter%3Did eq 'String {guuid} Name setting_id')
    

    For the $filter, I reproduce it when doing GET /me/calendars, but not when doing GET /me/events. This seems to be a problem with the service (unless the docs are just wrong). Let me check and report back.

    0 讨论(0)
提交回复
热议问题